From: Tim P. <ti...@pa...> - 2004-06-06 09:27:14
|
Thanks to everyone who helped, but I was looking in the wrong place. I am moving my applications up from Apache and jserv to Apache 2 and Tomcat5. My httpd.conf contained: ProxyPass /db http://beg:8082/servlet ProxyPassReverse /db http://beg:8082/servlet This worked but resulted in my getting a new session each time. Now I have: RewriteEngine on RewriteRule ^/db/(.+)$ /begbroke/$1 [L] ProxyRequests Off ProxyPass /begbroke http://beg:8082/begbroke ProxyPassReverse /begbroke http://beg:8082/begbroke and everything is back to working order! Thanks again for those who have offered suggestions. yours Tim Pizey On Thursday 27 May 2004 15:33, Tim wrote: > Hi, > > I seem to have a problem with Webmacro 2.0 and session handling, > on Tomcat 5.0.19, 5.0.24 and 5.0.25 > > I found a post suggesting that this was a known problem with 5.0.24, > but it hasn't gone away after upgrading. > > The problem is that each servlet gets a new, empty, session object. > > Anyone else getting similar problems? > > My servlet is derived from org.webmacro.servlet.WMServlet > > yours > tim pizey |