Cambiata
Cambiata

Reputation: 3845

Flex remoting and progress events?

Is there a way to monitor the loading progress (percent progress bar style) when using Flex remoting?

I'm trying out Flash Builder 4 with it's new data services features, but I can't find any pgrogress event stuff somewhere. This article by Robert Taylor http://www.roboncode.com/articles/144 indicates that it might not be possible...

Upvotes: 0

Views: 691

Answers (1)

Cornel Creanga
Cornel Creanga

Reputation: 5308

No you can not do that..when calling a remote method you launch an HTTP POST call containing the AMF message (serialized input parameters and the destination/method name) and on response you receive the AMF response. There is no way to tell you the progress and the workaround implies a lot of work (you will have to create a socket and build your mini protocol on top of AMF).

Upvotes: 1

Related Questions