On Tue, Aug 5, 2008 at 4:05 PM, axis-user <[EMAIL PROTECTED]> wrote: > > 2)We are using this command to generate the client stubs > WSDL2Java -uri DDP.wsdl -d xmlbeans > > 3)When calling stub's startxyz() method through our Client Program for > asynchronous calling of our web service, the request is not going to server > side and it is not showing any client side exception. > > 4)But when we change _operationClient.execute(true); line in startxyz() > method of the client stub which was earlier > _operationClient.execute(false); > the request went to server side. > Axis 1.4 version is used > > Not able to figure out where we went wrong?
this is because your client dies before axis2 able to send the request. Try putting a Thread.sleep(20000) after the .startxx method call. thanks, Amila. > > -- > View this message in context: > http://www.nabble.com/wsdl2java-...-_operationClient.execute-tp18828514p18828514.html > Sent from the Axis - User mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > -- Amila Suriarachchi, WSO2 Inc.
