Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » Java Development Tools (JDT) » Maintaining session problem in webservice client... Save and send cookie?
Maintaining session problem in webservice client... Save and send cookie? [message #634539] Fri, 22 October 2010 07:22
Tundrea Adrian-Costin is currently offline Tundrea Adrian-CostinFriend
Messages: 1
Registered: October 2010
Junior Member
Hello,

I have recently switched to programming in Java after programming for a while in C++, so bare with me if I ask dumb questions Smile ... In the company I work I have a situation which requires me to connect to a webservice.

I have used WSDL2Java successfully to generate the stub from the WSDL. I can connect and login to the webservice, but for some reason I cannot keep the session active. I send the login request, I receive the correct response, together with the cookie. The thing is I don't know how to extract it and send it along...

I have tried to myStub._getServiceClient().getOptions().setManageSession(tru e) but that doesn't seem to work. Is there any way to extract the cookie string from the response I get to the login request and then pass it to the following data request?

This is what I have got until now:

X1OrderServiceStub stub = new X1OrderServiceStub();
X1OrderServiceStub.Login request= new X1OrderServiceStub.Login();
request.setEmail("something@somewhere.com");
request.setPassword("thanks");
System.out.println("Request : " + request.toString());
X1OrderServiceStub.LoginResponse response= stub.Login(request);
System.out.println("Response : " + response.toString());

X1OrderServiceStub.AccountsList request2= new X1OrderServiceStub.AccountsList();
System.out.println("Request : " + request2.toString());
X1OrderServiceStub.AccountsListResponse response2= stub.AccountsList(request2);
System.out.println("Response : " + response2.toString()); // Result is session expired or not logged

Thank you very much!
Previous Topic:Glassfish did not start after JDK update 1.6.0_22
Next Topic:Turning off error markup while I type
Goto Forum:
  


Current Time: Fri Apr 26 23:54:20 GMT 2024

Powered by FUDForum. Page generated in 0.04463 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top