[Axis2] How to implement an asynchronous Web service?

2007-01-19 Thread Markus Heinisch
- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[Axis2] How to implement an asynchronous Web Service

2007-01-19 Thread Markus Heinisch
Hi all, Sorry for my last email without body! I'm new to Axis2/Java and want to create an asynchonous web service. My POJO looks like: interface AsyncService{ public String echo (String echo); } The request should return immediately and the response should be send in an asynchronous

Re: [Axis2] How to implement an asynchronous Web Service

2007-01-19 Thread Michele Mazzucco
Markus, what differs from the traditional (i.e. synchronous) way is the client code. Michele On 19 Jan 2007, at 12:35, Markus Heinisch wrote: Hi all, Sorry for my last email without body! I'm new to Axis2/Java and want to create an asynchonous web service. My POJO looks like: