Kris,

k> yes I meen multiple session from one client computer.  I know that
k> cocoon handle more session from different clients. But I meen more
k> session from one IP, one client. With different requests, with
k> different desing. I know it could sound crazy :)

Well, normally you have two choices how to maintain a session:

- Cookies
- URL Rewriting

If you want a single session per browser window, you have to opt for
URL Rewriting. This means that the client has to send the current
session in every requests sent to the server. You've got to ensure
that every link and every form sends this unique identifier. (This can
easily be done by a transformer. Or you can use the
response.encodeUrl() method for this task.)

Cookies won't work for you because cookies aren't stored in a per
window container by the browsers. If you use Mozilla and IE on one
machine, they will get two different cookies, but all Mozilla windows
will share the same session cookie.

regards

  Martin.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to