Re: CGI->cookie() problem

2000-05-24 Thread Kenneth Lee
I dived into CGI.pm, and I found what probably the problem is. When one calls CGI->cookie(), CGI will create a default query object, stored in the package global $CGI::Q, and in CGI::cookie(), it does some caching for performance issues. That seems to make things screwed up. It follows that al

Re: CGI->cookie() problem

2000-05-23 Thread Randal L. Schwartz
> "Kenneth" == Kenneth Lee <[EMAIL PROTECTED]> writes: Kenneth> Hi perlers, Kenneth> It seems that CGI->cookie() is not always returning the right thing. Kenneth> For example, three clients A, B and C send to the server three different Kenneth> session keys X, Y and Z repectively. In some c

CGI->cookie() problem

2000-05-23 Thread Kenneth Lee
Hi perlers, It seems that CGI->cookie() is not always returning the right thing. For example, three clients A, B and C send to the server three different session keys X, Y and Z repectively. In some circumstances, CGI->cookie() gives Y as A's cookie, Z as B's and X as C's, while they _are_ sen