| Author |
sharing session objects
|
cyril vidal
Ranch Hand
Joined: Jul 02, 2003
Posts: 247
|
|
HI, I would like to know where it is stipuled that
In order to share the same shopping cart object between requests, the same session object that is associated with a user would be required. However, when requests are made by the same user to different web applications, the same session object cannot be retrieved using the getSession() and getSession(boolean create) methods declared by the interface javax.servlet.http.HttpServletRequest.
extracted from a mock exam. So, the session may only be retrieved from the same web application? I would be very grateful for any precision about this topic, Regards, Cyril.
|
SCJP 1.4, SCWCD, SCBCD, IBM XML, IBM Websphere 285, IBM Websphere 287
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26184
|
|
|
This is from the J2EE spec (available on the java.sun.com site.) It states that web applications cannot share sessions. However, servlets within a web application can share a session.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
Kyle Brown
author
Ranch Hand
Joined: Aug 10, 2001
Posts: 3879
|
|
Read the Servlet 2.2 specification, page 36, section 7.3 on "Session Scope", or the Servlet 2.3 specification, page 51, section SVR7.3, or the Servlet 2.4 specification, page 56, section SVR7.3. They all say the same thing. Kyle
|
Kyle Brown, Author of Persistence in the Enterprise and Enterprise Java Programming with IBM Websphere, 2nd Edition
See my homepage at http://www.kyle-brown.com/ for other WebSphere information.
|
 |
cyril vidal
Ranch Hand
Joined: Jul 02, 2003
Posts: 247
|
|
Thanks Kyle for this very precise answer. Regards,
|
 |
 |
|
|
subject: sharing session objects
|
|
|