R – How to create a web wervice in java/Axis2 which should keep publishing data

axis2web services

I am a new to Axis2 and SOAP. I recently working on a Axis2 SOAP project, I have create a SOAP server and SOAP client by using java and axis2 implementing session scope. The problem is when I send a request, it returns response back only once. I am unable to make web service keep publishing data periodically untill the session end. Can any body help me…

Thanks in advance

Best Answer

I might be wrong, but I think since you work with HTTP you can't make the response permanent until you make your client perform calls permanently / periodically.

Permanent Requests --> Permanent Responses

Related Topic