Closed
Bug 85630
Opened 24 years ago
Closed 24 years ago
Session-Cookies from Tomcat 3.2 get lost
Categories
(Core :: Networking: Cookies, defect)
Tracking
()
People
(Reporter: soeren.kress, Assigned: morse)
Details
Session management with Tomcat 3.2 does not work because Mozilla seems to ignore
the cookie. I don't know if it ignores the cookie or if it just does not send it
back. I tested it with a small JSP page which shows me the HTTP header fields.
With mozilla 0.9 I had no problems. 0.9.1 does not send the cookie.
Here is the JSP code:
<html>
<body>
<%
java.util.Enumeration headers = request.getHeaderNames();
while (headers.hasMoreElements()) {
String header = (String) headers.nextElement();
String value = request.getHeader(header);
%><%=header%>: <%=value%><br><%
}
%>
</body>
</html>
Assignee | ||
Comment 1•24 years ago
|
||
Let me know if you are still seeing this problem with a recent build and, if so,
reopen this report. Otherwise I will assume that this is a dup of bug 83625
which got fixed this week.
*** This bug has been marked as a duplicate of 83625 ***
Status: UNCONFIRMED → RESOLVED
Closed: 24 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•