Thank you for your quick
reply, I do it the same way you post
in your Email. As long as you use only
one WebService with a generated AXIS-Session, there is no problem –
so u have also only one HttpSession (HTTPSession = AXISSession) ! And we can use the AxisHTTPSessionListener! But when I want to use
one AXISSession over different Webservices, I got a HTTPSession for every
WebService I call. Have someone a solution
for such an usecase? Can someone please give
me tip – how I can solve this problem??? Thanks in advance for
help Thomas Von:
Wagle, Shriniwas [mailto:[EMAIL PROTECTED] I haven't tried it, but if I had a need
I'd try something like this: - Start with the message context and go on
from there. Something like.. msgC = MessageContext.getCurrentContext(); From this point on, you should be able to
do the usual stuff. Also take a look at Axis API docs. From:
Hello, I use Apache Axis sessions (SOAP-Haeder based) and I
need to know when a session was destroyed, but I can’t find a session
timeout notifying mechanism for axis. Does anybody have any idea? Hope somebody can give me a tip L There is a similar solution for standard servlets
based on HttpSessionBindingListener : import java.io.*; import java.net.*; import java.util.*; import java.lang.*; import javax.servlet.*; import javax.servlet.http.*; public class TestSessionServer extends HttpServlet { public void doGet(HttpServletRequest req,
HttpServletResponse res) throws ServletException, IOException { res.setContentType("text/html"); PrintWriter out = res.getWriter(); String command =
req.getParameter("command"); HttpSession session = req.getSession(true); session.setMaxInactiveInterval(180); session.setAttribute("SessionObjName", new
SessionTimeoutNotifier()); System.out.println("The command you typed was :
"+command); out.println("You typed : "+command); out.println("Your session id is :
"+session.getId()); } // End of doGet method } class SessionTimeoutNotifier implements
HttpSessionBindingListener { SessionTimeoutNotifier() { } public void valueBound(HttpSessionBindingEvent event) { System.out.println("The session has started :
"+event.getSession().getId()); } public void valueUnbound(HttpSessionBindingEvent
event) { System.out.println("The session has ended : "+event.getSession().getId()); } } Thanks Thomas |
- AW: session management problem Dorner Thomas
- AW: session management problem Dorner Thomas