Bill Barker wrote:
I agree that the patch is simply masking the real problem.  With the current
mod_jk code what Tomcat sees is:
  Cookie: myCookie=1234
  Cookie: $Version=1


Huh, looking at the source I see the problem.
we are using:

'if (memcmp(p, "OOKIE", 5)'
so both cookie and cookie2 are passed as cookie.
That's bad.
we should check for:
'if (memcmp(p, "OOKIE\0", 6)'


Regards,
Mladen.

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to