Cookie problem in 5.5.26

2008-10-30 Thread Stephen More
I see in version 5.5.26 there are Cookie handling/parsing changes! 5.5.25 and prior I was able to read cookie values that included colons: cookie-name: lastaccess cookie-value: 10/30/2008%2010:41:00%20AM 5.5.26 and after: cookie-name: lastaccess cookie-value: 10/30/2008%2010 Other

Re: Cookie problem in 5.5.26

2008-10-30 Thread Mark Thomas
Stephen More wrote: I see in version 5.5.26 there are Cookie handling/parsing changes! 5.5.25 and prior I was able to read cookie values that included colons: cookie-name: lastaccess cookie-value: 10/30/2008%2010:41:00%20AM 5.5.26 and after: cookie-name: lastaccess cookie-value:

Re: Cookie problem in 5.5.26

2008-10-30 Thread Tim Funk
An extreme kludge is to create a Filter which creates a HttpServletRequestWrapper which overrides getCookies() with a custom implementation. That custom implementation would read the headers, find the cookies and perform its own parsing mechanism to read the cookies. -Tim Mark Thomas