From: Colin M. <co...@ch...> - 2004-10-14 02:21:37
|
On Thu, 2004-10-14 at 10:59, Jeff Smith wrote: > I have seen some similar behaviour when I open > multiple forms in a browser and that have the session > ID stored in a cookie. I modified my application not > to use cookies to store the session ID but instead > stored the session ID in the form data and everything > worked as expected. Cookie seems to be a common thread ... is this session-cookie mapping something you rolled yourself, or is it using the Session_Cookies stuff? In any case, Cookies are stored in a global variable - from discussions with Brent, it seems possible that globals can be corrupted if tclhttpd enters the event loop via a (nested?) vwait and another incoming request is serviced. A solution might be to store cookies per-socket. Needs more feedback and investigation. -- Colin McCormack <co...@ch...> |