Hi Graham! When I set this Set-Cookie header: sruid=83601369_2009-07-01_08_11_06_563705; expires=Fri, 01-Jul-2011 09:59:07 GMT
then I can read this HTTP_COOKIE one: HTTP_COOKIE: __utma=145205154.584996188.1243418609.1243418609.1243418609.1; __utmz=145205154.1243418609.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd= (none); sruid=83601369_2009-07-01_08_11_06_563705 But with this Set-Cookie: sruid=83601369_2009-07-01_08_11_06_563705; expires=Fri, 01-Jul-2011 10:02:30 GMT; domain=ruralnature.com then I can read this HTTP_COOKIE: HTTP_COOKIE: __utma=145205154.584996188.1243418609.1243418609.1243418609.1; __utmz=145205154.1243418609.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd= (none) As you can see the main diference is the domain part of the cookie I'm trying to create a recommendation server then the mod_wsgi application has one domain and the real application has other I need to put the domain information because if not the IE don't accept the cookie with the default configuration I can't solve the problem changing the IE security level Is there a way to read 3rd party cookies from mod_wsgi? Thanks! On Jul 1, 12:17 pm, Graham Dumpleton <[email protected]> wrote: > 2009/7/1 Garito <[email protected]>: > > > Hi! > > I'm trying to set a persistent cookie and with mozilla works ok but on IE > > don't > > > The problem with IE seems to be a security problem: IE don't accept 3 party > > cookies > > > I can use domain section for the cookie but then I don't know how to read it > > > With a normal cookie I can use the HTTP_Cookie header but if I set the > > domain in the cookien then this cookie don't appears on the http_cookie > > header > > > How can I deal with this problem? > > This doesn't appear to be a mod_wsgi or WSGI problem per se. You are > probably better off asking on a general web developers list, or if are > using Python, then maybe on: > > http://groups.google.com/group/comp.lang.python/topics?lnk > > or: > > http://groups.google.com/group/python-web-sig?lnk=srg > > You might even try: > > http://stackoverflow.com/ > > I'd suggest you really need to provide more information about the > exact headers being returned so people can more easily see what you > are talking about. > > Graham --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en -~----------~----~----~----~------~----~------~--~---
