Bug 5535 - Some Browser cannot understand Path and Domain in Set-Cookie header
Summary: Some Browser cannot understand Path and Domain in Set-Cookie header
Status: RESOLVED WONTFIX
Alias: None
Product: Tomcat 4
Classification: Unclassified
Component: Catalina (show other bugs)
Version: Nightly Build
Hardware: PC Linux
: P3 enhancement with 1 vote (vote)
Target Milestone: ---
Assignee: Tomcat Developers Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2001-12-20 04:50 UTC by James
Modified: 2004-11-16 19:05 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description James 2001-12-20 04:50:08 UTC
Hi.
I use tomcat to make mobile page with cookie.
Tomcat make set-cookie header with Path or Domain parameter,
but some browser cannot understand parameter name like 'Path' or 'Domain',
it only can understand lowercase parameter name.

So, I think CookieTools.class in catalina.jar may be changed. like,
     buf.append (";Path=");  ==>  buf.append (";path=");
I hope you regard this problem...

Thanks,
-Min-.
Comment 1 Remy Maucherat 2002-01-04 07:35:12 UTC
I personally don't recommend adding workarounds to try to support broken clients
and proprietary features. I'm downgrading the severity to "enhancement" since
the current behavior is already correct.
Comment 2 Remy Maucherat 2002-02-12 23:17:21 UTC
Generally, workarounds for broken user-agents implementations won't be provided.