Hey Orion team,

I know I can create more than one site using Orion, but does each ".war" or
web app get its own session id name? We have an unusual situation where our
admin site needs to allow 3 MSIE (or netscape) browsers open at the same
time, but each needs to hit a different part of our site. On our site, we
have a, b and c. all the pages in a, b and c are the same, thus all 3 use
the same one page..with minor differences for each. Because of this, I need
all requests of a to be separated from b and c via the session id, so that
the browser itself doesn't get lost in the state with two to three of them
open, one for each of a, b and c. Imagine (don't ask why..just imagine) that
a client of the site has three different profiles. A profile, B profile and
C profile. All three need to be visible at the same time, but a change to A
has no effect on B and C profiles. However, the actual HTML displayed is
identical for all three choices. So to avoid having 3 separate JSP pages,
its a simple matter of using one, with the request going to the proper web
app.

So..how would I set this up. It does NOT have to be the "root" app.
Index.jsp would be a login page. They choose a, b or c during login to
choose their path. Using a request parameter during login, and an
httpsession parameter after login, as log as all requests for a go to the
right /path, I believe it should work.

Also, how would I give 3 separate names, according to J2EE compliance, one
for each web app.

Thanks.


Reply via email to