- I store my request in a ThreadLocal (MySoapUtils.class):
- When I use:Code:import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.ws.transport.http.MessageDispatcherServlet; import com.hdexpertise.app.soap.Utils.MySoapUtils; public class MyMessageDispatcherServlet extends MessageDispatcherServlet { protected void doService(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse) throws Exception { MySoapUtils.setRequest(httpServletRequest); super.doService(httpServletRequest, httpServletResponse); } }
is each request the server create a session (multi session)Code:MySoapUtils.getRequest().getSession();
=> Please help me store httpsession and send it back to client or how to exchange JSESSIONID between server and client


Reply With Quote