Context restarting automatically!!! please help

2003-08-21 Thread Adi Katz
Hi, I have few element in my web.xml file which my web app can change dynamically. the problem is that when I change the value of any the webapp is reloading automatically It looks like tomcat detects a change in the web.xml file and reload the context if a change occured. Is it possible to dis

RE: LifecycleListener Do not work

2003-07-23 Thread Adi Katz
c-standard ServletContextListener? Yoav Shapira Millennium ChemInformatics >-Original Message----- >From: Adi Katz [mailto:[EMAIL PROTECTED] >Sent: Wednesday, July 23, 2003 4:21 AM >To: [EMAIL PROTECTED] >Subject: LifecycleListener Do not work > >Hello, > >I implemented org.

LifecycleListener Do not work

2003-07-23 Thread Adi Katz
Hello, I implemented org.apache.catalina.LifecycleListener and registered it in server.xml in the following way: ... ... Naturally mypackage.MyListener is in my webapp but it seems that when server.xml is being parsed on tomcat startup my listener class is not accessible from catalina

RE: Activate SSL in Tomcat 4.1.24

2003-06-05 Thread Adi Katz
get the error "The page cannot be displayed" Do you have any suggestions as to how i can debug this ? I mean are there any settings in the tomcat that i can use to see what happens ? Regards Abid -Original Message----- From: Adi Katz [mailto:[EMAIL PROTECTED] Sent: 5. juni 200

RE: Activate SSL in Tomcat 4.1.24

2003-06-05 Thread Adi Katz
al Message----- From: Adi Katz [mailto:[EMAIL PROTECTED] Sent: 5. juni 2003 14:15 To: 'Tomcat Users List' Subject: RE: Activate SSL in Tomcat 4.1.24 First shot with this kind of error: check the port number that you are using 443 or 8443 IE wil default https to 443 but if in server.xml 8443

RE: Activate SSL in Tomcat 4.1.24

2003-06-05 Thread Adi Katz
First shot with this kind of error: check the port number that you are using 443 or 8443 IE wil default https to 443 but if in server.xml 8443 is defined then you should try something like this: https://localhost:8443/ Hope it will help Adi -Original Message- From: Abid Ali Teepo [mailto

RE: changing tomcat configuration on the fly

2003-06-05 Thread Adi Katz
Tim Funk wrote: > There is no way to change web.xml on the fly. Except by - > - putting a new web.xml in its place > - stop the app > - start the app > > As for changes to server.xml. This can be done via JMX. See the code to > the admin app on how make changes. > > -Ti

changing tomcat configuration on the fly

2003-06-05 Thread Adi Katz
Hello, I am interested in changing the server.xml and web.xml files through servlets and then reload them. So for example I can add JNDI entries in server.xml without the nedd to stop/start tomcat again. Something very similar is done in the admin app ( shipped with tomcat ). Does anybody have a c