up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted
+250

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 here. You need to select the "Generate async" or "Generate both sync and async" option. This is an article for asynchronous web services with Axis2. It refers mainly to the service (not the client), but the client code isn't much different.

All Java Web Services Framework support asynchronous operations. You just need to configure the generator properly.

link|improve this answer
feedback

Check this out. It should help.

Asynchronous JAX-WS Web Service Client End-to-End Scenario

link|improve this answer
I checked that one already but it supposes an async WS already exists.. – Igor Zelaya Jun 4 '09 at 17:37
Ahh, sorry I couldn't help. – Mr. Will Jun 4 '09 at 19:59
feedback

Can you call the webservice from another thread with and include a callback?

link|improve this answer
Do you have any code snippet? – Igor Zelaya Jun 6 '09 at 18:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.