request.getSession.getAttribute()

2008-07-15 Thread Karen Schaper
Hi, I am calling a servlet that is not part of my wicket application. This servlet is expecting some things in the Session object. The non wicket servlet is calling getSession on the HttpServletRequest object and then gets out the attributes.

Re: request.getSession.getAttribute()

2008-07-15 Thread Serkan Camurcuoglu
I think this may give you the HttpSession object.. ((WebRequestCycle)getRequestCycle()).getWebRequest().getHttpServletRequest().getSession(); Karen Schaper wrote: Hi, I am calling a servlet that is not part of my wicket application. This servlet is expecting some things in the Session