RE: Please help, I have a headache .. servlet init troubles

2004-01-20 Thread Edson Alves Pereira
: Tomcat Users List Assunto: RE: Please help, I have a headache .. servlet init troubles no, it's one host, Cheers, ADC -Original Message- From: James Neville [mailto:[EMAIL PROTECTED] Sent: 19 January 2004 16:31 To: Tomcat Users List Subject: Re: Please help, I have

RE: Please help, I have a headache .. servlet init troubles

2004-01-20 Thread Edson Alves Pereira
de janeiro de 2004 13:35 Para: Tomcat Users List Assunto: RE: Please help, I have a headache .. servlet init troubles Hi, Yes I have the jdbc driver in common/lib - like I say ... it does connect but I do not know why it gives this error! I just removed trying to get

RE: Please help, I have a headache .. servlet init troubles

2004-01-20 Thread Allistair Crossley
try to get the JNDI resource in the servlet init method. -Original Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: 20 January 2004 13:07 To: 'Tomcat Users List' Subject: RE: Please help, I have a headache .. servlet init troubles Tell us, if you use

RE: Please help, I have a headache .. servlet init troubles

2004-01-20 Thread Edson Alves Pereira
:segunda-feira, 19 de janeiro de 2004 13:35 Para: Tomcat Users List Assunto:RE: Please help, I have a headache .. servlet init troubles Hi, Yes I have the jdbc driver in common/lib - like I say ... it does connect but I do not know why it gives this error! I just removed

RE: Please help, I have a headache .. servlet init troubles

2004-01-20 Thread Shapira, Yoav
Shapira Millennium ChemInformatics -Original Message- From: Edson Alves Pereira [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 20, 2004 8:25 AM To: 'Tomcat Users List' Subject: RE: Please help, I have a headache .. servlet init troubles Right, usually we get a dataSource in doGet

RE: Please help, I have a headache .. servlet init troubles

2004-01-20 Thread Allistair Crossley
-Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: 20 January 2004 15:37 To: Tomcat Users List Subject: RE: Please help, I have a headache .. servlet init troubles Howdy, Yeah, it's not good practice to get a connection (or other resource) and in the init method hold

RE: Please help, I have a headache .. servlet init troubles

2004-01-20 Thread Shapira, Yoav
Howdy, The NavigationManager closes the connection off. This was causing the problems. Now I put the JNDI block in the NavigationManager constructor and it works just fine!? So the lookup code worked fine, you got a connection, and then closing the connection raised the exception? As an aside,

RE: Please help, I have a headache .. servlet init troubles

2004-01-19 Thread Edson Alves Pereira
To solve your problem with JDBC Driver, you must put the JDBC driver inside $TOMCAT_HOME/common/lib, try this first the other errors we will see if happens again. -- De: Allistair Crossley[SMTP:[EMAIL PROTECTED] Responder:Tomcat Users List Enviada: segunda-feira, 19

RE: Please help, I have a headache .. servlet init troubles

2004-01-19 Thread Allistair Crossley
January 2004 17:22 To: 'Tomcat Users List' Subject: RE: Please help, I have a headache .. servlet init troubles To solve your problem with JDBC Driver, you must put the JDBC driver inside $TOMCAT_HOME/common/lib, try this first the other errors we will see if happens again. -- De

RE: Please help, I have a headache .. servlet init troubles

2004-01-19 Thread Shapira, Yoav
Howdy, Is the controller servlet declared twice in your web.xml? Yoav Shapira Millennium ChemInformatics -Original Message- From: Allistair Crossley [mailto:[EMAIL PROTECTED] Sent: Monday, January 19, 2004 10:57 AM To: TOMCAT USER (E-mail) Subject: Please help, I have a headache ..

RE: Please help, I have a headache .. servlet init troubles

2004-01-19 Thread Allistair Crossley
-on-startup1/load-on-startup /servlet Cheers, ADC -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: 19 January 2004 16:37 To: Tomcat Users List Subject: RE: Please help, I have a headache .. servlet init troubles Howdy, Is the controller servlet declared twice

Re: Please help, I have a headache .. servlet init troubles

2004-01-19 Thread James Neville
Allistair Crossley wrote: Do you know why my servlet initalises twice? That's my remaining issue.. If you are specifying multiple hosts, all running from the same appBase, then each web application will be deployed to each host. If this is the case, run each host from a different appBase so

RE: Please help, I have a headache .. servlet init troubles

2004-01-19 Thread Allistair Crossley
no, it's one host, Cheers, ADC -Original Message- From: James Neville [mailto:[EMAIL PROTECTED] Sent: 19 January 2004 16:31 To: Tomcat Users List Subject: Re: Please help, I have a headache .. servlet init troubles Allistair Crossley wrote: Do you know why my servlet initalises twice

RE: Please help, I have a headache .. servlet init troubles

2004-01-19 Thread Donie Kelly
I've seen this before but I can't remember the solution. Search the archives. Donie -Original Message- From: Allistair Crossley [mailto:[EMAIL PROTECTED] Sent: 19 January 2004 16:45 To: Tomcat Users List Subject: RE: Please help, I have a headache .. servlet init troubles no, it's one

Re: Please help, I have a headache .. servlet init troubles

2004-01-19 Thread James Neville
Allistair Crossley wrote: no, it's one host, Cheers, ADC And one Connector element? (commonly 8009 for CoyoteConnector and 8080 for standalone are defined in the default server.xml) I'm purely clutching at straws here. Maybe you could post your /WEB-INF/web.xml and the

RE: Please help, I have a headache .. servlet init troubles

2004-01-19 Thread Hume, John - NA US HQ Delray
Just a stab Did you back up a copy of your application such that you might have something like this? /tomcat /webapps /myapp /myapp_bak /ROOT /... Maybe Tomcat is attempting to load myapp_bak with default settings. -Original Message- From: Allistair Crossley