I created a webservice and enabled session management on both server and client. It works FINE until I enable REST on the client by adding the 3rd line of code in the serviceStub.java. The session management stops working.
// session management
_serviceClient.getOptions().setManageSession(true);
_serviceClient.engageModule("addressing");
// enable REST
_serviceClient.getOptions().setProperty(Constants.Configuration.ENABLE_REST,Constants.VALUE_TRUE);
Again if a comment the last line of code, session management is re-enabled.
Is that a bug or am I missing something?
I am using:
- Axis2 1.5.4
- Tomcat 7.0.8