Calling .NET Web Services Asynchronically from Java - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T15:05:06Z http://stackoverflow.com/feeds/question/951802 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/951802/calling-net-web-services-asynchronically-from-java 0 Calling .NET Web Services Asynchronically from Java Igor Zelaya 2009-06-04T16:55:46Z 2009-06-08T07:45:20Z <p>I need to make asynchronous calls to .NET web services from java since synchronous calls are too slow. I know in .NET this is easily done since the stub (proxy) class created by wsdl.exe also generates methods for asynchronous calls(BeginMethod()/EndMethod()). I created the service stub using eclipse Ganymede but no asynchronous method call were generated. How do you do this in java? Thanks in advance</p> http://stackoverflow.com/questions/951802/calling-net-web-services-asynchronically-from-java/951936#951936 0 Answer by Mr. Will for Calling .NET Web Services Asynchronically from Java Mr. Will 2009-06-04T17:22:34Z 2009-06-04T17:22:34Z <p>Check this out. It should help.</p> <p><a href="http://www.netbeans.org/kb/55/websvc-jax-ws-asynch.html" rel="nofollow">Asynchronous JAX-WS Web Service Client End-to-End Scenario</a></p> http://stackoverflow.com/questions/951802/calling-net-web-services-asynchronically-from-java/954535#954535 0 Answer by Kane for Calling .NET Web Services Asynchronically from Java Kane 2009-06-05T06:43:14Z 2009-06-05T06:43:14Z <p>Can you call the webservice from another thread with and include a callback?</p> http://stackoverflow.com/questions/951802/calling-net-web-services-asynchronically-from-java/963815#963815 0 Answer by kgiannakakis for Calling .NET Web Services Asynchronically from Java kgiannakakis 2009-06-08T07:45:20Z 2009-06-08T07:45:20Z <p>Since you are using Eclipse, you are probably using Axis2 to generate the Web Services client. Axis2 is capable of generating an asynchronous client. Have a look at the instructions <a href="http://ws.apache.org/axis2/0%5F94/CodegenTools-EclipsePlugin.html" rel="nofollow">here</a>. You need to select the "Generate async" or "Generate both sync and async" option. This is an <a href="http://www.ibm.com/developerworks/webservices/library/ws-axis2/" rel="nofollow">article</a> for asynchronous web services with Axis2. It refers mainly to the service (not the client), but the client code isn't much different.</p> <p>All Java Web Services Framework support asynchronous operations. You just need to configure the generator properly.</p>