put an object in the application

2001-04-09 Thread Patrick . Pierra
what is the equivalent to session.setAttribute("aName", anObject) but whith an application scope thanks

RE: put an object in the application

2001-04-09 Thread Michael Wentzel
what is the equivalent to session.setAttribute("aName", anObject) but whith an application scope there's context.set|getAttribute(String, Object); for webapp context scope attribs. --- Michael Wentzel Software Developer Software As We Think - http://www.aswethink.com

Re: put an object in the application

2001-04-09 Thread Leon Palermo
application.setAttribute("aName", anObject) what is the equivalent to session.setAttribute("aName", anObject) but whith an application scope thanks

Re: put an object in the application

2001-04-09 Thread Bo Xu
[EMAIL PROTECTED] wrote: what is the equivalent to session.setAttribute("aName", anObject) but whith an application scope thanks Hi :-) I am not sure, I suggest the following: in the following three kinds of "setAttribute/getAttribute": -0 ServletContext.setAttribute/getAttribute -1