Calling .NET Web Services Asynchronically from Java - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T15:05:06Zhttp://stackoverflow.com/feeds/question/951802http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/951802/calling-net-web-services-asynchronically-from-java0Calling .NET Web Services Asynchronically from JavaIgor Zelaya2009-06-04T16:55:46Z2009-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#9519360Answer by Mr. Will for Calling .NET Web Services Asynchronically from JavaMr. Will2009-06-04T17:22:34Z2009-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#9545350Answer by Kane for Calling .NET Web Services Asynchronically from JavaKane2009-06-05T06:43:14Z2009-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#9638150Answer by kgiannakakis for Calling .NET Web Services Asynchronically from Javakgiannakakis2009-06-08T07:45:20Z2009-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>