IIRC, you can only send one request per frame, so queue up your next one with a callLater(), or I think there's an "request dispatched" event of some sort you can listen for as well.
-Josh On Wed, Sep 17, 2008 at 4:55 PM, florian.salihovic < [EMAIL PROTECTED]> wrote: > Thanx for the info, > > i'll look deeper into the informations rigt after sending this post (i > would appreciate if you > could post some further informations). > > @Tracy > By "it didn't seem to work" i meant that the ready property was false after > sending a > request. By concurrentyl i mean having one Web Service instance which can > call multiple > operations without canceling the previous and let all calls be managerable > (in a sence of > be able to differentiate between the single results that come in). > > > Best regards and thanx for the info so far. > > > > --- In [email protected], "app.developer" <[EMAIL PROTECTED]> > wrote: > > > > Look up AsyncToken. This extend the EventDispatcher. > > > > This class provides a place to set additional or token-level data for > > asynchronous RPC operations. It also allows an IResponder to be > > attached for an individual call. > > > > Associate this to the SEND.... > > var token:AsyncToken = service.send(Params); > > token.addResponder(responder); > > > > The 'responder' will let your WS know where to return the results. > > > > I can write a longer answer after EOB. > > > > PCC > > > > --- In [email protected], "florian.salihovic" > > <florian.salihovic@> wrote: > > > > > > I'm currently trying to call with one WebService instance a WebService > > > several time concurrently. But it seems like it won't work. Is there a > > > way to achieve it? > > > > > > I'm using an instance of mx.rpc.soap.WebService. > > > > > > Any help would be appreciated. > > > > > > > > > > ------------------------------------ > > -- > Flexcoders Mailing List > FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt > Alternative FAQ location: > https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847 > Search Archives: > http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! Groups > Links > > > > -- "Therefore, send not to know For whom the bell tolls. It tolls for thee." http://flex.joshmcdonald.info/ :: Josh 'G-Funk' McDonald :: 0437 221 380 :: [EMAIL PROTECTED]

