DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=43687>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=43687

           Summary: after repeated authentication tomcat again sends page
                    with login form instead of protected static resource
           Product: Tomcat 6
           Version: 6.0.14
          Platform: Other
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Connectors
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Steps to replicate problem:

   1) clear firefox cache
   2) load url "http://localhost:8080/aaa/index.html";
   3) fill in auth form
   4) on index.html page click logout link to logout.jsp (invalidate session and
redirect to index.html)
   5) fill in auth form
   6) you will get form page again (!)
   7) click "reload" button
   8) you will get index.html


Conversation with server:

firefox:  GET /aaa/index.html HTTP/1.1
 tomcat:  HTTP/1.1 200 OK
          ETag: W/"478-1193216820000"
          Last-Modified: Wed, 24 Oct 2007 09:07:00 GMT

          <page with login form>

firefox:  POST /aaa/j_security_check HTTP/1.1
 tomcat:  HTTP/1.1 302 Moved Temporarily
          Location: http://localhost:8080/aaa/index.html

firefox:  GET /aaa/index.html HTTP/1.1
          If-Modified-Since: Wed, 24 Oct 2007 09:07:00 GMT
          If-None-Match: W/"478-1193216820000"
 tomcat:  HTTP/1.1 200 OK
          ETag: W/"316-1193222364000"
          Last-Modified: Wed, 24 Oct 2007 10:39:24 GMT
          
          <page with protected content -- index.html>

firefox:  GET /aaa/logout.jsp HTTP/1.1
 tomcat:  HTTP/1.1 302 Moved Temporarily
          Location: http://localhost:8080/aaa/index.html

firefox:  GET /aaa/index.html HTTP/1.1
          If-Modified-Since: Wed, 24 Oct 2007 10:39:24 GMT
          If-None-Match: W/"316-1193222364000"
 tomcat:  HTTP/1.1 200 OK
          ETag: W/"478-1193216820000"
          Last-Modified: Wed, 24 Oct 2007 09:07:00 GMT
          <page with login form>

firefox:  POST /aaa/j_security_check HTTP/1.1
 tomcat:  HTTP/1.1 302 Moved Temporarily
          Location: http://localhost:8080/aaa/index.html

firefox:  GET /aaa/index.html HTTP/1.1
          If-Modified-Since: Wed, 24 Oct 2007 09:07:00 GMT
          If-None-Match: W/"478-1193216820000"
 tomcat:  HTTP/1.1 304 Not Modified
          ETag: W/"316-1193222364000"

firefox:  GET /aaa/index.html HTTP/1.1
          If-Modified-Since: Wed, 24 Oct 2007 09:07:00 GMT
          If-None-Match: W/"478-1193216820000"
          Cache-Control: max-age=0
 tomcat:  HTTP/1.1 200 OK
          ETag: W/"316-1193222364000"
          Last-Modified: Wed, 24 Oct 2007 10:39:24 GMT

          <page with protected content -- index.html>

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to