Ian Bicking wrote:
> Resolution?  Not sure.  Maybe someone else is more familiar with
> tricks to get IE to accept both cookies and redirects at the same
> time. 

One cheap trick would be to add the session ID to the query string using
Session.sessionEncode() (which I should note that I've never tested):

        
self.response().sendRedirect(self.session().sessionEncode('MyServlet'))

or manually:
        
        self.response().sendRedirect('MyServlet?_SID_=%s' %
self.session().identifier())

- Geoff


-------------------------------------------------------
This SF.net email is sponsored by:  Etnus, makers of TotalView, The best
thread debugger on the planet. Designed with thread debugging features
you've never dreamed of, try TotalView 6 free at www.etnus.com.
_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to