Tagged Questions

2
votes
2answers
517 views

What is the point of the ASyncToken?

I've been tasked with the creation of an AS3 client for an HTML5 WebSocket server. My initial thinking is to create this service using some of the existing classes in AS3, namely attempting to ...
1
vote
2answers
4k views

HTTPService AsyncToken and AsyncResponder example

Where can I find an example of Flex application which implements an HTTPService asynchronously called by an AsyncToken and an AsyncResponder? Thanks in advance the httpservice send a string like this ...
0
votes
2answers
70 views

Flex : LCDS Service returning null Asynctoken when executed 2nd time

I'm developing a Flex application using RobotLegs, LiveCycle DS & Java. I'm trying to implement an update function, using LCDS, but I'm running into some strange behaviour: This is the ...
0
votes
1answer
37 views

AsyncToken return basic string?

I'm trying to develop a Flex Mobile / PHP application, and I'm running into some trouble with the AsyncToken... Does it not just return a basic string? For example... I'm wanting to just return a ...
0
votes
1answer
114 views

Retrieve Last 2 Results from Service Call in Flex AS3 PHP

I'm a Flex newbie and I've searched both StackOverflow and Google'd but can't seem to figure out this (simple) problem with Flex/ActionScript 3 Asynchronous programming. I have a PHP service (Zend) ...
0
votes
1answer
190 views

How do i handle Asynctokens in Actionscript classes

Heres my code: public class Schem { public var info:String=""; private var ro:RemoteObject = new RemoteObject("Hibernatetest"); public function Schem() { ro.endpoint ...
0
votes
2answers
440 views

How do i handle Remote Method calls via AsyncToken?

So here is the mxml i would like to get working: <?xml version="1.0" encoding="utf-8"?> <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" ...
0
votes
0answers
337 views

AsyncToken with user credentials as parameters

I wanted to get some help on something. I have to make a remoteobject call via asynctoken, that needs to have parameter of usercredentials passed in as setremotecredentials. the actual method itself ...
0
votes
2answers
997 views

How to make URLLoader return an AsyncToken?

I was trying to retrieve binary data over HTTP for my Flex application, and was running into some stumbling blocks. HTTPService did not seem to deal with binary data well, people said to use ...
0
votes
1answer
203 views

ActionScript/Flex: Why are the apply{Fault,Result} methods of AsyncToken internal?

As the title suggests, why are the applyResult and applyFault methods of AsyncToken marked mx_internal? There have been a few times that I would have liked to use AsyncToken in my code, but I've ...