Re: sendRedirect() fails on first call only within a session

2003-01-29 Thread Bill Barker
It's not supposed to, but then I haven't used 3.2.x for a very long time. The first thing that I would try is to upgrade my isapi_redirect.dll from http://jakarta.apache.org/builds/jakarta-tomcat-connectors/jk/release/v1.2.2 /bin/win32/. It should be fully compatible with the 3.2.x Java code.

sendRedirect() fails on first call only within a session

2003-01-28 Thread Varley, Roger
Hi I'm using IIS to serve the top level html pages from a web application that runs under Tomcat 3.2. The first page (default.htm) in the top level directory (http://domain/applicationname is displayed and prompts for userid and password and passes this data to a servlet

RE: sendRedirect() fails on first call only within a session

2003-01-28 Thread Varley, Roger
I've done some more investigation. If I replace 'response.sendRedirect(response.encodeRedirectURL(../default.htm))' with 'response.sendRedirect(../default.htm);' then everything works as expected, so there is something about response.encodeRedirectURL() that I'm not uderstanding. I've looked