Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Radu_Cocieru
Radu_Cocieru
Offline

Badges

Badges
3

Accepted Solutions

Accepted Solutions
0

Likes Received

Likes Received
0

Posts

Posts
5

Discussions

Discussions
2

Questions

Questions
3

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Radu_Cocieru
Customize the badges you want to showcase on your profile
Re: RemoteObject with a non AMF protocol - Adobe LiveCycle 12-07-2007
HiI've added a TraceTarget to the main MXML this is what I get 'core-services' channel endpoint set to http://pc3:8080/remoting/Services'8F17263B-CDAB-BCAB-0634-B93F8D347453' producer setdestination to 'core-services'.'8F17263B-CDAB-BCAB-0634-B93F8D347453' producer sendingmessage 'D2B42D6E-4D55-37AF-ED77-B93F8D34C30B''core-services' channel is connected.'core-services' channel sending message:(mx.messaging.messages::RemotingMessage)#0 body = (Array)#1 [0] "user" [1] "pass" clientId = (null) dest...

Views

257

Likes

0

Replies

0
Re: RemoteObject with a non AMF protocol - Adobe LiveCycle 11-07-2007
Yes, it subclasses Channel, but I also tried withHTTPChannel, unfortunately I couldn't override the AFMXDecode andEncode to adapt it ... if I could that would've solved all thetroubles

Views

255

Likes

0

Replies

0
Re: Threading - Adobe LiveCycle 27-06-2007
Hi,Flex uses FlashPlayer to interpret/run the code from SWFfiles, the way this code gets executed is per frame.Every frame some code gets executed and only per framenothing in between them. So if you parse your XML all at once thismeans in one frame and if it takes longer than 1/FPS ( usually 24fps) seconds than the client seems to be freezed.If you can parse your data in chunks as they com on thesocket .. not all at once you can probably avoid the freeze. Another way to do it would be to spread...

Views

256

Likes

0

Replies

0
RemoteObject with a non AMF protocol - Adobe LiveCycle 26-06-2007
Hi !I am trying to use RemoteObject with a non AMF protocol.This is a section of my services.xml that is added to thecompiler command line here is how I use it: service = new RemoteObject("coreServices"); service.concurrency = "multiple"; var t:AsyncToken = service.login("user","pass"); ...My problem is that only the first call works as it should,all the other calls don't even get to the server, the internalSendfrom the HessianChannel class doesn't get called except for thefirst time.Anyone ca...

Views

760

Likes

0

Replies

4
Re: Acegi + Spring + Flex - Adobe LiveCycle 26-06-2007
Hi, yes, We are currently using Spring + Flex .... via a webserviceprotocol HESSIAN (there are AS3 implementation of this protocol onthe internet). It is a binary protocol like AMF but open and free.Spring offers support for using HESSIAN for webservice calls.I am writing an implementation of my own of hessian for AS3,that will allow to use it with RemoteObject or just like it.Regards.

Views

260

Likes

0

Replies

1