Jakarta Commons HttpClient - cookies
I'm using the Jakarta Commons HttpClient package with my Java applet to send an "end session" HTTP request when the applet's destroy() method is called.
Can HttpClient access cookies set on the browser?
My application uses mod_python on the server side and creates a server-side cookie for the user's session. This method stores a client-side cookie in the browser's cookie cache containing the ID of the user's server session.
My "end session" handler requires that a valid session ID be given to help make sure that rouge users don't try to end other users' sessions.
However, when my applet sends the "end session" request, it does not send the session id cookie. Is it possible for my applet - using the HttpClient package - to find the session id cookie from the browser and send it with the request?

