Hi Eric,
there still seems to be a little confusion about what you want
to do and how to achieve it. HTTP is *not* a connection-based
protocol. Closing a connection on the client side - and that is
all you can do with our connection manager - will *not* cancel
the session on the server. The server will keep the session and
just wait for the next request in that session, which can come
over a new connection at any time.
If you want to destroy the session that resides on the server,
you need to install code on the server. Then you have to send
a *request* to the server, requesting that the server session
be destroyed by your code there. Ways to do this ("logout") have
been pointed out before in this thread, though details will
depend on the servlet container.
hope that helps,
Roland
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]