I'm developing web services with axis. I want keep a sessión for the users. Have axis any method for manage sessions?
Thankss
__________________
http://www.hhdirecto.net
http://www.dechiste.com
-
Session in web services with axis (2 messages)
- Posted by: alain c
- Posted on: April 25 2006 10:42 EDT
Threaded Messages (2)
- https://ftponline.com/ by A A on April 26 2006 03:47 EDT
- Session in web services with axis by Sowmya Sridhar on May 08 2006 14:45 EDT
-
https://ftponline.com/[ Go to top ]
- Posted by: A A
- Posted on: April 26 2006 03:47 EDT
- in response to alain c
You should find an article at https://ftponline.com/ , i don't remember where. -
Session in web services with axis[ Go to top ]
- Posted by: Sowmya Sridhar
- Posted on: May 08 2006 14:45 EDT
- in response to alain c
Most servers maintain session using cookies on the client side. The HttpSender that comes with axis has some issue that it cant handle multiple cookies (I dont remember this very well). The cookies have to be in some format otherwise it will not remember one of them. Try searching for HttpSender problems / see the code for HttpSender where it handles cookies. Once this is fixed, it will maintain session. I also think that u have to call stub.setSession(true). Hope this helps