vote up 0 vote down star

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

flag

3 Answers

vote up 0 vote down check

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|flag
vote up 0 vote down

Check this out. It should help.

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

link|flag
I checked that one already but it supposes an async WS already exists.. – Igor Zelaya Jun 4 at 17:37
Ahh, sorry I couldn't help. – Mr. Will Jun 4 at 19:59
vote up 0 vote down

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

link|flag
Do you have any code snippet? – Igor Zelaya Jun 6 at 18:39

Your Answer

Get an OpenID
or

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