RE: Help setting up a default web application

2004-09-14 Thread Pete
a bind exception (or any other exceptions) when you start up. Yoav Shapira Millennium Research Informatics -Original Message- From: Pete [mailto:[EMAIL PROTECTED] Sent: Monday, September 13, 2004 12:19 PM To: Tomcat Users List Subject: RE: Help setting up a default web application Hi Yoav

RE: Help setting up a default web application

2004-09-14 Thread Shapira, Yoav
Hi, I then get the bind exception when I attempt to access the web application, since tomcat appears to re-load the webapp in another class loader. There's one I've never heard before ;) That's something I like about this list, always something new. Tomcat wouldn't reload (or stop, or start,

RE: Help setting up a default web application

2004-09-14 Thread Pete
:22 StandardWrapper[/webdav:invoker]: Loading container servlet invoker Thanks again for you time and help, Pete -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: 14 September 2004 13:54 To: Tomcat Users List Subject: RE: Help setting up a default web application

Help setting up a default web application

2004-09-14 Thread Pete
Hi Yoav, I was just wondering what is the preferred method for using singleton classes. Would it be better if I made them available to all context's (by putting them in a jar file in the shared/lib directory) and thus avoid the errors that I have been seeing (this would require a bit of

RE: Help setting up a default web application

2004-09-14 Thread Shapira, Yoav
, not being aware of classloader intricacies). Yoav Shapira Millennium Research Informatics -Original Message- From: Pete [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 11:24 AM To: Tomcat Users List Subject: Help setting up a default web application Hi Yoav, I was just

RE: Help setting up a default web application

2004-09-14 Thread Shapira, Yoav
: Pete [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 9:14 AM To: Tomcat Users List Subject: RE: Help setting up a default web application Hi Yoav, I basically use a listener to start a series of singleton classes, one of which is a Server Socket and another is class

Help setting up a default web application

2004-09-13 Thread Pete
Hi All, I was hoping that someone would be able to explain that when I set a Context in the server.xml: Context path= docBase=mygui debug=0 reloadable=false crossContext=false/ that tomcat appears to load mygui two instances of mygui. Basically all I need is that when a user type in

Re: Help setting up a default web application

2004-09-13 Thread Ben Souther
If you're manually configuring server.xml, shut off autodeploy in the Host node. On Mon, 2004-09-13 at 10:50, Pete wrote: Hi All, I was hoping that someone would be able to explain that when I set a Context in the server.xml: Context path= docBase=mygui debug=0 reloadable=false

RE: Help setting up a default web application

2004-09-13 Thread Pete
Pete -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED] Sent: 13 September 2004 15:52 To: Tomcat Users List Subject: Re: Help setting up a default web application If you're manually configuring server.xml, shut off autodeploy in the Host node. On Mon, 2004-09-13 at 10:50

RE: Help setting up a default web application

2004-09-13 Thread Ben Souther
List Subject: Re: Help setting up a default web application If you're manually configuring server.xml, shut off autodeploy in the Host node. On Mon, 2004-09-13 at 10:50, Pete wrote: Hi All, I was hoping that someone would be able to explain that when I set a Context

RE: Help setting up a default web application

2004-09-13 Thread Shapira, Yoav
: Monday, September 13, 2004 12:05 PM To: Tomcat Users List Subject: RE: Help setting up a default web application Hi Ben, Thanks for your help, unfortunatly that still has not solved my problem. Below is the content of my server.xml file: Server port=8005 shutdown=SHUTDOWN debug=0

RE: Help setting up a default web application

2004-09-13 Thread Pete
. Thanks Pete -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: 13 September 2004 17:05 To: Tomcat Users List Subject: RE: Help setting up a default web application Hi, Context path=/ is a no-no. Use path= for the default web application, and path=/something for others

RE: Help setting up a default web application

2004-09-13 Thread Shapira, Yoav
other exceptions) when you start up. Yoav Shapira Millennium Research Informatics -Original Message- From: Pete [mailto:[EMAIL PROTECTED] Sent: Monday, September 13, 2004 12:19 PM To: Tomcat Users List Subject: RE: Help setting up a default web application Hi Yoav, I have tried