Re: how to get sessionId on the client side

2011-03-09 Thread wadi wadi
Thanks Diego but I have no stub in my client code, I am using the latest version of AXIS2, maybe there is no need to have the stub. Is there another way to get the sessionid? Thanks On Wed, Mar 9, 2011 at 10:58 AM, Diego Monni wrote: > In this way > > MessageContext inMsgCtx = > stub._getServ

Re: how to get sessionId on the client side

2011-03-09 Thread Diego Monni
In this way MessageContext inMsgCtx = stub._getServiceClient().getLastOperationContext().getMessageContexts().get("In"); incomingCookie = (String)inMsgCtx.getServiceContext().getProperty(HTTPConstants.COOKIE_STRING); 2011/3/9 wadi wadi > Hi, > > I am using soap session scope and would like to

how to get sessionId on the client side

2011-03-09 Thread wadi wadi
Hi, I am using soap session scope and would like to know how to get the sessionID on the client side. I am not using any servlet just a simple client. Thanks for your help!