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" <[EMAIL PROTECTED]> 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. >

