RE: Servlet Loaded

2003-11-05 Thread Shapira, Yoav
lly [mailto:[EMAIL PROTECTED] >Sent: Tuesday, November 04, 2003 5:55 PM >To: [EMAIL PROTECTED] >Subject: Servlet Loaded > >To all, > > Anybody know how you can tell if a specific servlet is loaded into >Tomcat(4.1.

Re: Servlet Loaded

2003-11-04 Thread Tim Funk
If you have JMX enabled (See a JMX book for using JMX, to complex to discuss in an email) - it may be available to be queried via a JMX tool. (This will work with 5, I forget how much is exposed with 4) -Tim Peter O'Reilly wrote: To all, Anybody know how you can tell if a specific servlet is

Servlet Loaded

2003-11-04 Thread Peter O'Reilly
To all, Anybody know how you can tell if a specific servlet is loaded into Tomcat(4.1.29) after it's started? -Peter - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: init servlet loaded twice

2003-09-19 Thread Shapira, Yoav
rvlet. Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Chris Rolfe [mailto:[EMAIL PROTECTED] >Sent: Thursday, September 18, 2003 5:16 PM >To: Tomcat Users List >Subject: Re: init servlet loaded twice > >I've noticed that load-on-startup also ca

Re: init servlet loaded twice

2003-09-18 Thread Chris Rolfe
I've noticed that load-on-startup also causes an extra instances of jsps. I came across another thread on multiple inits (Sun forum?). The gist was that it's legitimate for the container to instantiate several of your class. Makes sense if you think about it. It's a "class" after all. Chris on

RE: init servlet loaded twice

2003-09-18 Thread Shapira, Yoav
Howdy, That's proper behavior by tomcat. Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Phillip Qin [mailto:[EMAIL PROTECTED] >Sent: Thursday, September 18, 2003 4:04 PM >To: 'Tomcat Users List' >Subject: RE: init servlet loaded twice

RE: init servlet loaded twice

2003-09-18 Thread Phillip Qin
Subject: RE: init servlet loaded twice Howdy, Reloading a webapp will cause another init of load-on-startup servlets, yes. Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Phillip Qin [mailto:[EMAIL PROTECTED] >Sent: Thursday, September 18, 2003 3:55 PM >To: &

RE: init servlet loaded twice

2003-09-18 Thread Shapira, Yoav
Subject: RE: init servlet loaded twice > >One. Is it because of using tomcat manager app? > >-Original Message- >From: Shapira, Yoav [mailto:[EMAIL PROTECTED] >Sent: September 18, 2003 3:41 PM >To: Tomcat Users List >Subject: RE: init servlet loaded twice > > >

RE: init servlet loaded twice

2003-09-18 Thread Phillip Qin
One. Is it because of using tomcat manager app? -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: September 18, 2003 3:41 PM To: Tomcat Users List Subject: RE: init servlet loaded twice Howdy, How many declarations do you have for that servlet in your web.xml

RE: init servlet loaded twice

2003-09-18 Thread Shapira, Yoav
Howdy, How many declarations do you have for that servlet in your web.xml? Yoav Shapira Millennium ChemInformatics >-Original Message- >From: Phillip Qin [mailto:[EMAIL PROTECTED] >Sent: Thursday, September 18, 2003 3:39 PM >To: '[EMAIL PROTECTED]' >Subject:

init servlet loaded twice

2003-09-18 Thread Phillip Qin
I was looking at my webapp log this afternoon. I use tomcat + log4j + struts. In the log, I found that my InitServlet was loaded twice. One under Thread-xxx, the other under HostConfig[localhost]. Could any body please explain? PQ