Re: Tomcat 5.x thread model

2006-09-14 Thread Bill Barker
For the standard Java connector, it's one socket - one thread (this is also true of the standard Java AJP/1.3 connector, but in this case requests from many different users will use the same socket). For the APR connector and the Nio connector (currently Tomcat 6 only), a thread will handle req

Re: Tomcat 5.X

2006-03-16 Thread Mladen Turk
Jorge Herrera Aguilar wrote: I Install Tomcat on my pc, and i'm able to start it and to stop it, but when i try to view a simple index.html page it cames back with an error message saying : Resoirce \index.html is not available I'm running windows XP Do you know a guy named José Iván Gonzá

Re: Tomcat 5.X

2006-03-16 Thread Pulkit Singhal
t any > luck > > > > >From: "Pulkit Singhal" <[EMAIL PROTECTED]> > >Reply-To: "Tomcat Users List" > >To: "Tomcat Users List" > >Subject: Re: Tomcat 5.X > >Date: Thu, 16 Mar 2006 09:28:24 -0800 > > > >What URL

Re: Tomcat 5.X

2006-03-16 Thread Mladen Turk
Fadi Samara wrote: It is not company advetising indeed. This tag gets added automatically, but if it makes you happy, I switched to my gmail account. Maybe you need to get a little educated on the difference between the government and company advertising. Thanks. I didn't read the entire hea

Re: Tomcat 5.X

2006-03-16 Thread Fadi Samara
It is not company advetising indeed. This tag gets added automatically, but if it makes you happy, I switched to my gmail account. Maybe you need to get a little educated on the difference between the government and company advertising. Thanks --- It's not company advertising. Look at

Re: Tomcat 5.X (UNCLASSIFIED)

2006-03-16 Thread Mladen Turk
David Kerber wrote: It's not company advertising. Look at the return address: it's a US government (military) email server, and requires it to be noted when information is unclassified. It's probably added automatically by the server. Right, like said, let him use public email service. If

Re: Tomcat 5.X

2006-03-16 Thread Jorge Herrera Aguilar
yes i did, even i moved index.html to different subdirectories without any luck From: "Pulkit Singhal" <[EMAIL PROTECTED]> Reply-To: "Tomcat Users List" To: "Tomcat Users List" Subject: Re: Tomcat 5.X Date: Thu, 16 Mar 2006 09:28:24 -0800 What URL did

Re: Tomcat 5.X (UNCLASSIFIED)

2006-03-16 Thread David Kerber
It's not company advertising. Look at the return address: it's a US government (military) email server, and requires it to be noted when information is unclassified. It's probably added automatically by the server. Mladen Turk wrote: Samara, Fadi N Mr ACSIM/ASPEX wrote: Classification:

Re: Tomcat 5.X

2006-03-16 Thread Pulkit Singhal
What URL did you use? Did you try others such as " http://localhost:8080/jsp-examples/"; ? On 3/16/06, Jorge Herrera Aguilar <[EMAIL PROTECTED]> wrote: > > I Install Tomcat on my pc, and i'm able to start it and to stop it, but > when > i try to view a simple index.html page it cames back with an

Re: Tomcat 5.X (UNCLASSIFIED)

2006-03-16 Thread Mladen Turk
Samara, Fadi N Mr ACSIM/ASPEX wrote: Classification: UNCLASSIFIED Caveats: NONE I hate this kind of emails! Can you guys use some public email service instead stupid company advertising. Further more you have changed the original thread name. I think that we should consider such emails as

RE: Tomcat 5.X (UNCLASSIFIED)

2006-03-16 Thread Samara, Fadi N Mr ACSIM/ASPEX
Classification: UNCLASSIFIED Caveats: NONE Where is your index.html ? Is it part of a deployable WAR ? -Original Message- From: Jorge Herrera Aguilar [mailto:[EMAIL PROTECTED] Sent: Thursday, March 16, 2006 12:16 PM To: users@tomcat.apache.org Subject: Tomcat 5.X I Install Tomcat on

Re: Tomcat 5.X dies after some time

2006-03-03 Thread Chun Wei Ho
I think port 8005 is the one used for triggering a shutdown, its right at the start of server.xml On 3/3/06, Hadraba Petr <[EMAIL PROTECTED]> wrote: > Hi, > > I saw this error yesterday. I tried to run second instance of the Tomcat. > > First tomcat was configured to use port 8080 and redirect p

Re: Tomcat 5.X dies after some time

2006-03-03 Thread Hadraba Petr
Hi, I saw this error yesterday. I tried to run second instance of the Tomcat. First tomcat was configured to use port 8080 and redirect port 8443 The second instance was configured to port 9080 and redirect 9443 When I tried to start the new instance, the error about port 8005 occured... In the

Re: Tomcat 5.X dies after some time

2006-03-03 Thread foo shyn
Hi, It seems that there're other application that are using 8005 as port on ur server as well. fooshyn - Original Message - From: "Devireddy, Nagendra Reddy (STSD)" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Friday, March 03, 2006 5:40 PM Subject: Tomcat 5.X dies after some time

Re: tomcat 5.x context path priority

2005-12-21 Thread David Smith
That passage hasn't changed since Tomcat 4. Think of it this way. When the request comes in, the very first decision tomcat has to make is what context should handle the request. It compares the incoming URI to it's list of context paths and sends the request to the context with the longest

Re: tomcat 5.x context path priority

2005-12-21 Thread foo java
Hi David, Thanks for your reply. But i didn't got it properly; How do you say that the defined context with "/myapps/conf" will get precedence over "/myapps" and subfolder conf in this application ?? The document you referred is for tomcat 5.5, is that also same for tomcat 5.0.x versions? Any to

Re: tomcat 5.x context path priority

2005-12-20 Thread David Smith
Just looking up some other info, I ran accross this which directly answers your question: http://tomcat.apache.org/tomcat-5.5-doc/config/context.html --David David Smith wrote: I'm not sure there is a documented spec on this at the container (tomcat) level. One of the tomcat developers woul

Re: tomcat 5.x context path priority

2005-12-20 Thread David Smith
I'm not sure there is a documented spec on this at the container (tomcat) level. One of the tomcat developers would know best about this, but I would imagine tomcat handles such issues the same way servlet mappings within a webapp are handled. The longest matching path is the one that's chose