> Hello, > > I'm using axis2-1.3. > > If I use asynchron non blocking client with seperateListeners there > will remain connections open on the server-side after calling the web > service. And if I recall the web service several times I get a > connection refused error on the server-side. Did you release the connection from the client side ? I think that might be the reason for this. In the case of non-blocking with two channel case server initiate the response as a new http request so once the client is done with the message processing he has to release the connection. Try to use following API in the service client , if it does not work please open an issue. - serviceClient.cleanupTransports(); > > If I use only one Listener by setting setSeperateListeners(false) > everything works fine, but with big attachments the only one > connection will be the bottle neck. Yes , in this case server send the response in the same channel.
-Deepal > Does anybody have an idea what is wrong with the seperate listeners? > > Thanks for help. > > Michael > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
