If I'm understanding you correctly, you can do what you're trying to do by
using
scope="application"
instead of
scope="session"
in <jsp:useBean>. If that's not the answer you're looking for, please
describe your question further.
Cheers,
Shawn
On Fri, 23 Feb 2001, Wolfie wrote:
> That's a good idea, but unfortunately there's nothing in there that's useful
> information on the level I need. And the HttpSessionContext, which has
> methods to retrieve a session that's not your own has been deprecated.
>
> Any other suggestions?
>
> ----- Original Message -----
> From: "Shawn Bayern" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, February 23, 2001 3:24 PM
> Subject: Re: a tag library that manages a session
>
>
> > You're looking for the entire ServletContext, represented to JSP
> > applications as "application scope."
> >
> > Shawn
> >
> > On Fri, 23 Feb 2001, Wolfie wrote:
> >
> > > Typically each browser window gets its own session. Is it possible to
> share
> > > a session between two devices of any sort, much less browsers?
> > >
> > > ----- Original Message -----
> > > From: "Ward, Jeff" <[EMAIL PROTECTED]>
> > > To: <[EMAIL PROTECTED]>
> > > Sent: Friday, February 23, 2001 1:44 PM
> > > Subject: RE: a tag library that manages a session
> > >
> > >
> > > > What do you mean by manage? You can access the session from inside
> of a
> > > > tag by using pageContext.getSession() and from there do whatever you
> want
> > > to
> > > > it.
> > > > -Jeff Ward
> > > >
> > > > -----Original Message-----
> > > > From: Wolfie [mailto:[EMAIL PROTECTED]]
> > > > Sent: Friday, February 23, 2001 10:43 AM
> > > > To: [EMAIL PROTECTED]
> > > > Subject: a tag library that manages a session
> > > >
> > > > I'm new to the tag library world, so this may be a simple one: I know
> that
> > > > that you can set the scope of a bean with the scope attribute of the
> <jsp:
> > > > useBean> tag, but can anyone explain how can I make my custom tag
> library
> > > > manage the entire session?
> >
>