Apache Mod-Python - Closed: (MODPYTHON-17) Big marshalled cookies cause an error

This is Interesting: Free IT Magazines  
Home > Archive > Apache Mod-Python > March 2006 > Closed: (MODPYTHON-17) Big marshalled cookies cause an error





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Closed: (MODPYTHON-17) Big marshalled cookies cause an error
Graham Dumpleton (JIRA)

2006-03-05, 2:45 am

[ http://issues.apache.org/jira/brows...HON-17?page=all ]

Graham Dumpleton closed MODPYTHON-17:
-------------------------------------


> Big marshalled cookies cause an error
> -------------------------------------
>
> Key: MODPYTHON-17
> URL: http://issues.apache.org/jira/browse/MODPYTHON-17
> Project: mod_python
> Type: Bug
> Versions: 3.1.3
> Reporter: Nicolas Lehuen
> Assignee: Nicolas Lehuen
> Fix For: 3.2.7


>
> From the mailing list :
> While fiddling around with mod_pyhon 3.1.3 MarshalCookies and IE6, I
> noticed that once a cookie got to a certain size, it would stop being
> recognized as a valid Marshal cookie. I suspect (although I don't know
> for sure -- I'm not currently in a position to build mod_python) the
> problem is the following:
> In MarshalCookie's "def __str__(self):" method, base64.encodestring() is
> used to encode the cookie value. Unfortunately, base64.encodestring()
> adds newline characters to the byte stream every 76th byte, which seem
> to cause the problem. The terminal newline is stripped, but none of the
> internal ones.
> I would suggest that the line:
> m = base64.encodestring(marshal.dumps(self.value))[:-1]
> be replaced by something like:
> m = base64.encodestring(marshal.dumps(self.value))
> m = "".join(m.split("\n"))
> Regards, Steve McAdams


Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com