Re: Cookie Header Not Being Parsed

2018-10-21 Thread Durand, Dustin
On 10/21/18, 8:22 AM, "Mark Thomas" wrote: > Tomcat recycles HttpServletRequest objects. If an application retains a reference to a request then you can see the behaviour you describe. > Setting the following system property: > org.apache.catalina.connector.RECYCLE_FACADES=true

Re: Cookie Header Not Being Parsed

2018-10-21 Thread Mark Thomas
On 21/10/18 12:36, Durand, Dustin wrote: > On 10/20/18, 3:34 PM, "Caldarale, Charles R" > wrote: >> your application is likely hanging on to some reference to the prior request >> and inadvertently using it when a new request shows up. >> This often takes the form of instance variables in a

Re: Cookie Header Not Being Parsed

2018-10-21 Thread Durand, Dustin
On 10/20/18, 3:34 PM, "Caldarale, Charles R" wrote: >your application is likely hanging on to some reference to the prior request >and inadvertently using it when a new request shows up. > This often takes the form of instance variables in a servlet being used to > hold request information.

RE: Cookie Header Not Being Parsed

2018-10-20 Thread Caldarale, Charles R
> From: Durand, Dustin [mailto:dustin_dur...@intuit.com] > Subject: Cookie Header Not Being Parsed > I've been attempting to track down an issue where the cookies aren't being > parsed out of the cookie header in rare cases. We're using a java service > that utilizes JSession, so this causes