On Wed, Jan 28, 2009 at 4:43 AM, Jason Wells <[email protected]> wrote: > Hi, > > I used wsdl2java to generate an ADB client that goes against a stateful > service in Axis2. When I call service operations with the client, the > JSESSIONID that the server sends in the HTTP responses aren't maintained in > its requests, so the server opens a new session with each request. How can I > configure the client to maintain the session? In other words, I want to do > what it looks like you can do in Axis1 with these settings: > > Stub.setMaintainSession(true); > Stub._setProperty(Call.SESSION_MAINTAIN_PROPERTY, new Boolean(true));
in axis2 stub._getServiceClient().getOptions().setManageSession(true); thanks, Amila. > > > Thanks, > Jason > > -- Amila Suriarachchi WSO2 Inc. blog: http://amilachinthaka.blogspot.com/
