Hi All, I'm currently using Axis2C with wsdl-generated stubs. At the moment I create a single stub/environment, then use that to make multiple synchronous requests one after another, while I recreate the ADB objects for each request but I reuse the stub. This seems to work fine (is it ok to reuse the same stub?)
However to make the app more responsive, I'd like to have one or more threads spawned to send the syncrounous requests. If I create multiple stubs/environments, can I reuse each one in it's own thread to perform the calls, or is there a better way to do this? Thanks!