Q.  Is it correct to assume that the JSP engine looks on the request
object (eg: HTTPServletRequest) when attempting to retrieve the value of
a previously set object for a given session.  For example:

<html>
<%@ page import="<blah>.MyClass.*" %>
<jsp:useBean id="model" scope="session" class="<blah>.MyClass.MyBean" />

<%= model.getName(0) %>
</html>

Is there a way to indicate to the JSP engine to use (or lookup) the
requested object in a different location other than the the (http)
session.  For example, if someone was using their own session management
tracking mechanism.  How could someone have the JSP engine make a
request for a stored object on the other session manager object?  In the
above example, the JSP engine will look on the http session for an
object with the id of "model".  I want to have it look on my own session
management thread instead.

PS:  Many thanks to all who helped in solving the scope problem I was
having.

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to