[EMAIL PROTECTED] wrote:
> On Tue, Dec 21, 2004 at 04:31:50PM -0500, Geoffrey Talvola wrote:
>> I also checked in a new HTTPRequest.py in addition to Application.py.
> 
> Hmm, even though I have UseAutomaticPathSessions set to true
> in Application.config I see a session cookie.  So the new
> code sees both a session path and a session cookie.  How
> can I turn off the session cookie generation?

You are seeing both a cookie sessionID and a path sessionID because the
current code tries to use cookie sessions when possible.  So it sends both a
cookie sessionID and a path sessionID, and if it gets a cookie sessionID in
a request then it assumes cookies are enabled and stops sending the path
sessionID.

I have added a new setting into CVS "UseCookieSessions" that you can set to
False to prevent cookies from being used for sessions at all.  This should
give you the behavior you're looking for.  You'll need to update
HTTPResponse.py from CVS and add UseCookieSessions = False to your
Application.config.

- Geoff


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to