Re: How can I make tomcat to instantiate a class

2001-06-18 Thread Luba Powell
Thank you ! - Original Message - From: "Boris Niyazov" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 18, 2001 5:53 PM Subject: Re: How can I make tomcat to instantiate a class > We use a database connection pool class which is a servlet

Re: How can I make tomcat to instantiate a class

2001-06-18 Thread Boris Niyazov
;java" %> >> > <%@ page import="javabean.Counter" %> >> > >> > >> > >> > >> > >> > <% >> > out.println("Count from scriplet = " + counter.getCount()); >> > %> >> > >>

Re: How can I make tomcat to instantiate a class

2001-06-14 Thread Luba Powell
This awfully good... - Original Message - From: "Bo Xu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 14, 2001 5:15 PM Subject: Re: How can I make tomcat to instantiate a class > > ...But actually my problem was to instantiate a class w

Re: How can I make tomcat to instantiate a class

2001-06-14 Thread Bo Xu
> ...But actually my problem was to instantiate a class when > tomcat boots up...so that i can use that object across sessions.Can u > suggest something towarsd this. > [...] Hi :-) I find the following is from servlet-2_3-pfd2-spec.pdf(for Servlet containers which supports Servlet spec2.3): *

Re: How can I make tomcat to instantiate a class

2001-06-14 Thread Luba Powell
Debashis Ghosh [mailto:[EMAIL PROTECTED]] > Sent: Thursday, June 14, 2001 11:30 AM > To: [EMAIL PROTECTED] > Subject: Re: How can I make tomcat to instantiate a class > > > Hi Luba, > Thanks for this . But actually my problem was to instantiate a class when > tomcat boots up...s

RE: How can I make tomcat to instantiate a class

2001-06-14 Thread William Kaufman
AM To: [EMAIL PROTECTED] Subject: Re: How can I make tomcat to instantiate a class Hi Luba, Thanks for this . But actually my problem was to instantiate a class when tomcat boots up...so that i can use that object across sessions.Can u suggest something towarsd this. Thanks debashis On Thursday 14

Re: How can I make tomcat to instantiate a class

2001-06-14 Thread Luba Powell
> To: <[EMAIL PROTECTED]> Sent: Thursday, June 14, 2001 2:29 PM Subject: Re: How can I make tomcat to instantiate a class > Hi Luba, > Thanks for this . But actually my problem was to instantiate a class when > tomcat boots up...so that i can use that object across sessions.Can u s

Re: How can I make tomcat to instantiate a class

2001-06-14 Thread Debashis Ghosh
> > > > > > > - Original Message ----- > From: "Debashis Ghosh" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, June 13, 2001 9:57 PM > Subject: How can I make tomcat to instantiate a class > > > Hi, > > Ca

Re: How can I make tomcat to instantiate a class

2001-06-14 Thread Luba Powell
"Debashis Ghosh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 13, 2001 9:57 PM Subject: How can I make tomcat to instantiate a class > Hi, > Can anyone suggest How can I make tomcat to instantiate a class so that i can > access it from my > js

Re: How can I make tomcat to instantiate a class

2001-06-14 Thread Hemant Singh
clear this? Hemant --- Debashis Ghosh <[EMAIL PROTECTED]> wrote: > Hi, > Can anyone suggest How can I make tomcat to > instantiate a class so that i can > access it from my > jsp or servlet as an application level > variable.Basically i want to > instatiate one connection

How can I make tomcat to instantiate a class

2001-06-13 Thread Debashis Ghosh
Hi, Can anyone suggest How can I make tomcat to instantiate a class so that i can access it from my jsp or servlet as an application level variable.Basically i want to instatiate one connection pool class so that i can access it from my servlet to get an connection object out of it. On