Praveen Peddi wrote:
I am trying to re-factor my soap services such that session management would be possible in soap services. Right now session management is not possible with our soap services.
I was looking at FAQs and I noticed that sessions can be maintained using cookies (see below)
http://ws.apache.org/soap/faq/faq_chawke.html#Q5_10
But it looks like I need to pass SOAPContext object as argument for each method in all my soap services. I can't do this since one of client is implemented using MS-SOAP.
Also the requirement is to keep the soap services independent of Apache SOAP tool kit API, since we may migrate to Axis in future.
So my question is: Is it possible to manage sessions (using httpsessions) w/o using SOAPContext on the server side?
Praveen