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=41849>.
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=41849

           Summary: Blank page after login on static html page (form
                    authentication)
           Product: Tomcat 5
           Version: 5.5.17
          Platform: Other
        OS/Version: other
            Status: NEW
          Severity: normal
          Priority: P2
         Component: Catalina
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: [EMAIL PROTECTED]


Going to a page, let say main.html, the first time everything is fine:

login.html (login and push OK button)

and then correctly goin to main.html:

Then quit the browser and then going to main.html; it goes wrong:

login.html (login and push OK button)

and then for IE: blank page
         for FireFox: nothing happens (login page is still there)

this behaviour is repeating...

summary http workflow (Internet Explorer):
First time (the one that works fine):
request: GET main.html HTTP/1.1
response: HTTP/1.1 304 Not modified

          [for some reason the unmodified source is that of login.html]

request:  POST /j_security_check HTTP/1.1
response: HTTP/1.1 302 Moved Temporarily
          etc.

request:  GET main.html HTTP/1.1
          Cache-control: no-cache
response: HTTP/1.1 200 OK

          [html for main.html]

Second time (the one that doesnt work):

request: GET main.html HTTP/1.1
response: HTTP/1.1 200 OK
          Set-Cookie: .....
          ETAG: ...
          Last-Modified: ..etc.

          [html for login.html]

request:  POST /j_security_check HTTP/1.1
response: HTTP/1.1 302 Moved Temporarily
          etc.

request:  GET main.html HTTP/1.1
          Cache-control: no-cache
response: HTTP/1.1 304 Not Modified
          [this is strange, how can the response be not modified when no Last-
Modified information is send with the request?????]

-- 
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