|
Hello all; well figured out a solution and this works for me. Came up with a solution aftre looking into the axis code. Posting the snippet below: ------------------------------------------ String cookieValue = "someusercookie"; Service service = new Service(); service.setMaintainSession(true); // need to be set before creating the call.. Call call = service.createCall(); .... call.setProperty(HTTPConstants.HEADER_COOKIE,cookieValue); call.setProperty(HTTPConstants.HEADER_COOKIE2,cookieValue); .... call.invoke(...); ----------------------------------------- regards, Ravi Ravi Krishnamurthy wrote: Hello: |
- Re: Setting cookie with apache axis Ravi Krishnamurthy
- Re: Setting cookie with apache axis Davanum Srinivas
