RE: Server.xml problem..

2004-11-22 Thread Shapira, Yoav
Hi, Are you sure the information for your context isn't written to conf/[engine]/[host]/rpcoemapi.xml instead of server.xml? Yoav Shapira http://www.yoavshapira.com -Original Message- From: Shilpa Nalgonda [mailto:[EMAIL PROTECTED] Sent: Monday, November 22, 2004 12:11 PM To: Tomcat

RE: Server.xml problem..

2004-11-22 Thread Shilpa Nalgonda
List Subject: RE: Server.xml problem.. Hi, Are you sure the information for your context isn't written to conf/[engine]/[host]/rpcoemapi.xml instead of server.xml? Yoav Shapira http://www.yoavshapira.com -Original Message- From: Shilpa Nalgonda [mailto:[EMAIL PROTECTED] Sent: Monday

RE: Server.xml problem..

2004-11-22 Thread Shapira, Yoav
To: Tomcat Users List Subject: RE: Server.xml problem.. under TOMCAT_HOME/conf i only have server.xml, tomcat-users.xml , web.xml, catalina.policy and jk2.properties. i can't find rpcoemapi.xml anywhere under Tomcat_home. Before i had all the datasource configuration for my Web apps in server.xml. And i

RE: Server.xml problem..

2004-11-22 Thread sven morales
PROTECTED] Sent: Monday, November 22, 2004 12:20 PM To: Tomcat Users List Subject: RE: Server.xml problem.. Hi, Are you sure the information for your context isn't written to conf/[engine]/[host]/rpcoemapi.xml instead of server.xml? Yoav Shapira http://www.yoavshapira.com

Re: Server.xml optimization question.

2004-11-08 Thread jouko johansson
Hi, I believe you have read: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/config/http.html and by configuring one value at the time. It takes some time to be done. I think you can't create a common how-to configure your tomcat because people uses tomcat in various solutions. - Jouko

RE: Server.xml configuration question.

2004-10-26 Thread Shapira, Yoav
Hi, Add swallowOutput=true to your Context element. It also makes the SystemOutLogger/SystemErrLogger definitions redundant IIRC. Then when you have a chance switch to using a real logging toolkit like log4j. Yoav Shapira http://www.yoavshapira.com -Original Message- From: Mufaddal

Re: Server.xml configuration question.

2004-10-26 Thread Mufaddal Khumri
Yes at some point I do need to switch to log4j. I set the swallowOutput=true ... ... Engine name=Catalina defaultHost=localhost !-- Define the default virtual host -- Host name=localhost debug=0 appBase=webapps unpackWARs=true autoDeploy=true Context

RE: Server.xml configuration question.

2004-10-26 Thread Shapira, Yoav
Hi, When i start tomcat now, I still get some of the system.out from my webapp written to catalina.out. No. That can't be right. The output you're seeing is coming from somewhere else, or your configuration is otherwise messed up. My webapp implements ServletContextListener and

Re: Server.xml configuration question.

2004-10-26 Thread Mufaddal Khumri
Yes, most definitely I have to use the log4j library. I just rechecked my server.xml and I am still baffled as to why the output is going to catalina.out ? Heres the entire server.xml: ---START Server port=8005 shutdown=SHUTDOWN Service name=Catalina Connector port=9090

RE: Server.xml configuration question.

2004-10-26 Thread Shapira, Yoav
Hi, I just rechecked my server.xml and I am still baffled as to why the output is going to catalina.out ? Because the Logger is inside your Context, it applies only to that Context. It does not apply to other Contexts within your Host, such as those created by autoDeploy. Try moving Logger

Re: Server.xml configuration question.

2004-10-26 Thread Mufaddal Khumri
Hi, No change. Moved it to the host and also moved it under Engine to see if that changes anything. Still the same results. Regards, On Oct 26, 2004, at 12:54 PM, Shapira, Yoav wrote: Hi, I just rechecked my server.xml and I am still baffled as to why the output is going to catalina.out ?

RE: Server.xml configuration problem

2004-09-16 Thread Shapira, Yoav
Hi, You need to add an explicit Context element for your webapp, and inside it a ResourceLink element to make the GlobalNamingResources DataSource visible to your webapp. Check the configuration reference document for GlobalNamingResourcs and ResourceLink for details. Yoav Shapira Millennium

RE: Server.xml configuration problem

2004-09-16 Thread LINGALA, AMARESHWAR G \(SBCSI\)
/ ResourceParams name=jdbc/myoracle Should make the tomcat recognise the database. Thanks Amar -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 1:12 PM To: Tomcat Users List Subject: RE: Server.xml configuration problem Hi, You

RE: Server.xml configuration problem

2004-09-16 Thread Shapira, Yoav
Hi, Can you please be more specific, I tried to follow up the documents but am unable to fix the bug. Can you please send me the example of the change? I would be very much thankful to you. I am assuming that Resource name=jdbc/myoracle auth=Container type=javax.sql.DataSource/

Re: Server.xml configuration problem

2004-09-16 Thread Jukka Uusisalo
: Thursday, September 16, 2004 9:21 PM Subject: RE: Server.xml configuration problem Can you please be more specific, I tried to follow up the documents but am unable to fix the bug. Can you please send me the example of the change? I would be very much thankful to you. I am assuming that Resource

RE: Server.xml configuration problem

2004-09-16 Thread LINGALA, AMARESHWAR G \(SBCSI\)
It is working now, All I have to do is put the resource params inside of the DefaultContext Thanks for all your help !!! -Original Message- From: Jukka Uusisalo [mailto:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 1:50 PM To: Tomcat Users List Subject: Re: Server.xml

RE: Server.xml configuration problem

2004-09-16 Thread Shapira, Yoav
PROTECTED] Sent: Thursday, September 16, 2004 3:10 PM To: Tomcat Users List Subject: RE: Server.xml configuration problem It is working now, All I have to do is put the resource params inside of the DefaultContext Thanks for all your help !!! -Original Message- From: Jukka Uusisalo [mailto

RE: Server.xml configuration problem

2004-09-16 Thread LINGALA, AMARESHWAR G \(SBCSI\)
I will try that one too. Thanks Amar -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 2:13 PM To: Tomcat Users List Subject: RE: Server.xml configuration problem Hi, I strongly encourage you to NOT use DefaultContext, but instead

Re: Server.xml configuration problem

2004-09-16 Thread Jukka Uusisalo
Another issue with DefaultContext is, do you really want share that datasource with all your applications? - Jukka - - Original Message - From: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Thursday, September 16, 2004 10:13 PM Subject: RE: Server.xml

RE: Server.xml configuration problem

2004-09-16 Thread Caroline Jen
help !!! -Original Message- From: Jukka Uusisalo [mailto:[EMAIL PROTECTED] Sent: Thursday, September 16, 2004 1:50 PM To: Tomcat Users List Subject: Re: Server.xml configuration problem Hi, Your datasource jdbc/myOracle must be inside some Context element

RE: server.xml and $

2004-08-12 Thread Shapira, Yoav
Hi, There's a known escaping issue there, http://issues.apache.org/bugzilla/show_bug.cgi?id=28219. Yoav Shapira Millennium Research Informatics -Original Message- From: Spisser Reinhard [mailto:[EMAIL PROTECTED] Sent: Thursday, August 12, 2004 6:08 AM To: [EMAIL PROTECTED] Subject:

RE: server.xml structure

2004-07-27 Thread Shapira, Yoav
Hi, At http://jakarta.apache.org/tomcat. Yoav Shapira Millennium Research Informatics -Original Message- From: Mohammad N. Tina [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 4:16 PM To: [EMAIL PROTECTED] Subject: server.xml structure Hi, where i can find a documentation for

Re: server.xml mod_jk Configuration

2004-06-04 Thread Bill Barker
All three of these attributes are for the HTTP/1.1 Connector. The JK Connector will simply (and quietly) ignore them. Emre [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] The following is from my server.xml. This connector is communicating with mod_jk and then to an apache instance.

RE: Server.xml - Connector configuration problem

2004-03-25 Thread Shapira, Yoav
Hi, Actually I have 512MB RAM plus 756MB page size(virtual memory). 1.So i can use -Xmx 512m right? Not unless you want threashing. 2.what is this -XX:NewRatio?does this help? Read the docs. Experiment. Yoav Shapira This e-mail, including any attachments, is a confidential business

RE: Server.xml - Connector configuration problem

2004-03-24 Thread Shapira, Yoav
Hi, My Questions: 1.How do i determine how many concurrent users can hit my application.? You analyze the business requirements for the system, and then you run a stress test tool like JMeter to see how many concurrent users your system can handle before becoming unresponsive or crashing. You

Re: Server.xml - Connector configuration problem

2004-03-24 Thread armalai
to proceed further.. Thanks., MALAI - Original Message - From: Shapira, Yoav [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Wednesday, March 24, 2004 1:55 PM Subject: RE: Server.xml - Connector configuration problem Hi, My Questions: 1.How do i determine how many concurrent

RE: Server.xml - Connector configuration problem

2004-03-24 Thread Shapira, Yoav
Hi, 2.In Jmeter right now i'm able to handle 75 concurrent users.How do i increase the users? By increasing the memory allocated to your JVM (-Xmx) along with your hardware to match. By increasing and maxThreads number as well. 3.I have the JVM options, -Xms 256 -Xmx 512 and My RAM is 512K is

Re: Server.xml - Connector configuration problem

2004-03-24 Thread Robert Hall
Hello, Shapira, Yoav wrote: (in part) Also please try to be accurate when you specify these numbers: you have 512MB, not 512K of RAM available. You're using -Xms256m and -Xmx512m as java vm options. Note that the latter is someone misleading: you're telling the JVM it can use 512MB of RAM for

Re: Server.xml - Connector configuration problem

2004-03-24 Thread armalai
2:52 PM Subject: RE: Server.xml - Connector configuration problem Hi, 2.In Jmeter right now i'm able to handle 75 concurrent users.How do i increase the users? By increasing the memory allocated to your JVM (-Xmx) along with your hardware to match. By increasing and maxThreads number as well

Re: Server.xml content

2004-01-30 Thread Philipp Taprogge
Hi! Jon Belinfante wrote: Does anyone know how in a Web App one can read parameter info from server.xml. Basically I am looking for a way to read port numbers from the app. Is this possible. ? I presume not - but I ask just in case there is something I may of missed. It is neither possible nor

RE: Server.xml content

2004-01-30 Thread Jon Belinfante
: Re: Server.xml content Hi! Jon Belinfante wrote: Does anyone know how in a Web App one can read parameter info from server.xml. Basically I am looking for a way to read port numbers from the app. Is this possible. ? I presume not - but I ask just in case there is something I may of missed

Re: Server.xml content

2004-01-30 Thread Mikaël VAILLANT
why do you want to use especially server.xml. you can use web.xml in your WEB-INF appli to read special information Message du 30/01/04 14:00 De : Jon Belinfante A : '[EMAIL PROTECTED]' Copie à : Objet : Server.xml content Hi Does anyone know how in a Web App one can read

RE: Server.xml content

2004-01-30 Thread Shapira, Yoav
Howdy, I totally accept it is not preferable to have a web-app read config content from the WebServer Container - I just wondered for a particular app I have inherited for support/maintenance it was possible. I thought it was not - and I thank you for verifying this fact. People always rush to

RE: Server.xml and re-start!

2004-01-05 Thread FRANCOIS Dufour
me i simply open task and end the process [EMAIL PROTECTED] crazy-wilys webmaster From: Ghanakota, Vishu [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: Server.xml and re-start! Date: Mon, 5 Jan 2004 09:14:26 -0800 Hi, Is

RE: Server.xml and re-start!

2004-01-05 Thread Shapira, Yoav
Howdy, No. Yoav Shapira Millennium ChemInformatics -Original Message- From: Ghanakota, Vishu [mailto:[EMAIL PROTECTED] Sent: Monday, January 05, 2004 12:14 PM To: 'Tomcat Users List' Subject: Server.xml and re-start! Hi, Is there a way to reload conf/server.xml without restarting the

Re: Server.xml and re-start!

2004-01-05 Thread Camron G . Levanger
You can do most anything you need with the manager app without a restart. It's well documented at the jakarta site. Camron G. Levanger The Dreamlab www.dreamlabmedia.com (866) 890-3705 On Jan 5, 2004, at 10:14 AM, Ghanakota, Vishu wrote: Hi, Is there a way to reload conf/server.xml without

Re: Server.xml

2003-08-21 Thread Bill Barker
Of course, one way is to comment out the http connector. The other way is to include a security-constraint in your web.xml something like: security-constraint web-resource-collection web-resource-nameSSL area/web-resource-name url-pattern/protected/*/url-pattern

RE: server.xml

2003-08-14 Thread Shapira, Yoav
Howdy, Which values must I change in server.xml-file to improve the nummer of users? You would typically remove everything you don't need, and raise min and maxProcessors on your connector to be as high as your hardware/OS supports. Which are the highest values for all the parameters in

RE: Server.xml

2003-07-30 Thread Shapira, Yoav
Howdy, Make sure you change the redirectPort for the 8080 connector to not be 8443, then, and point instead to your SSL port ;) Yoav Shapira Millennium ChemInformatics -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 1:47 PM To: [EMAIL

RE: Server.xml

2003-07-30 Thread batristain
, 2003 2:13 PM To: Tomcat Users List Subject: RE: Server.xml Howdy, Make sure you change the redirectPort for the 8080 connector to not be 8443, then, and point instead to your SSL port ;) Yoav Shapira Millennium ChemInformatics -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

RE: server.xml: useURIValidationHack=false ???

2003-06-20 Thread Shapira, Yoav
Howy, I just answered this question on another thread on the mailing list ;) Search the archives and look at org.apache.coyote.tomcat4.CoyoteAdapter. Yoav Shapira Millennium ChemInformatics -Original Message- From: Nico Hoffmann [mailto:[EMAIL PROTECTED] Sent: Friday, June 20, 2003

RE: Server.xml

2003-03-18 Thread graghupathy
Okie dokie !.. Send me the following information ... Context path ( the URL ) the directory ( full path ) you want to put your jsp/servlets Your OS ( UNIX / WINDOWS / LINUX ) ... Then I can help . Guru -Original Message- From: Hunter, Sandra [mailto:[EMAIL PROTECTED] Sent:

RE: Server.xml

2003-03-18 Thread Hunter, Sandra
Context path (the URL): http://localhost:8080/IDCard/indexID.jsp Directory: C:\Tomcat\webapps\IDCard OS: WIN2K -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 1:26 AM To: [EMAIL PROTECTED] Subject: RE: Server.xml Okie dokie !.. Send

Re: Server.xml

2003-03-17 Thread Erik Price
Hunter, Sandra wrote: Frustration abounds: I am plodding through a tomcat tutorial and it suggests modifying the Server.xml file to include a new context path line to allow for playing with a sample file. Everything works tickety boo until I do that, then Tomcat won't startup at all. When I

RE: Server.xml

2003-03-17 Thread Hunter, Sandra
- From: Erik Price [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2003 1:03 PM To: Tomcat Users List Subject: Re: Server.xml Hunter, Sandra wrote: Frustration abounds: I am plodding through a tomcat tutorial and it suggests modifying the Server.xml file to include a new context path line

RE: Server.xml

2003-03-17 Thread Geoff Peters
Sandra - I have had similar experiences with similar frustrating results, and it always seems to be placement of the Context /Context tags - for some reason sometimes you need closing /Context tags, other times you don't, I can't seem to figure out when to use them and when not to, so I end up

Re: Server.xml

2003-03-17 Thread Erik Price
sense to you? What do I do? -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2003 1:03 PM To: Tomcat Users List Subject: Re: Server.xml Hunter, Sandra wrote: Frustration abounds: I am plodding through a tomcat tutorial and it suggests modifying

RE: Server.xml

2003-03-17 Thread p niemandt
) at java.lang.Thread.run(Thread.java:536) So does this make any sense to you? What do I do? -Original Message- From: Erik Price [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2003 1:03 PM To: Tomcat Users List Subject: Re: Server.xml Hunter, Sandra wrote: Frustration

RE: Server.xml

2003-03-17 Thread PELOQUIN,JEFFREY (HP-Boise,ex1)
, March 17, 2003 3:01 PM To: Tomcat Users List Subject: RE: Server.xml Sandra - I have had similar experiences with similar frustrating results, and it always seems to be placement of the Context /Context tags - for some reason sometimes you need closing /Context tags, other times you don't, I can't

RE: Server.xml

2003-03-17 Thread p niemandt
I think some basic XML guidance is in order: Also consider doing some google on it: If you know the syntax, you should never need to get frustrated or make mistakes. 1. Every XML element needs to be closed. This is usually in one of two formats: Either the element does not have any embedded

RE: Server.xml

2003-03-17 Thread Hunter, Sandra
- From: p niemandt [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2003 2:13 PM To: 'Tomcat Users List' Subject: RE: Server.xml Hi Sandra: Quite likely Tomcat has not been able to start successfully. It's also quite likely that in changing your server.xml file you might have broken some of the xml

RE: Server.xml

2003-03-17 Thread Filip Hanik
are you using the Ajp13Connector? I thought there was an upgraded CoyoyteConnector for this purpose Filip -Original Message- From: Hunter, Sandra [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2003 2:19 PM To: 'Tomcat Users List' Subject: RE: Server.xml Thanks Paul, I

RE: Server.xml

2003-03-17 Thread Hunter, Sandra
Filip: I would definitely like to hear more about that... -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2003 2:27 PM To: Tomcat Users List Subject: RE: Server.xml are you using the Ajp13Connector? I thought there was an upgraded CoyoyteConnector

RE: Server.xml

2003-03-17 Thread Filip Hanik
] Sent: Monday, March 17, 2003 2:29 PM To: 'Tomcat Users List' Subject: RE: Server.xml Filip: I would definitely like to hear more about that... -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2003 2:27 PM To: Tomcat Users List Subject: RE

RE: Server.xml

2003-03-17 Thread p niemandt
Hi Sandra: Sorry for the push on XML syntax: I have just noticed a few incidences where people try to comment out pieces of an xml file and mistakenly embed some -- in a comment, or forget to close a tag. Now: In general the logs looks fine, the only potential problem I can see is that the web

RE: Server.xml

2003-03-17 Thread Chris Dodunski
Or, like what I did, comment out a block of code not noticing that that block contained comments - in effect producing a nested comment. Chris. -Original Message- From: p niemandt [mailto:[EMAIL PROTECTED] Sent: Tuesday, 18 March 2003 10:46 a.m. To: 'Tomcat Users List' Subject: RE

RE: Server.xml Reload without Restarting Tomcat

2003-03-14 Thread Nicolas Dinh
I was using 4.0.x. The admin tool that allows you to do the reloading of server.xml file does not exist. I checked ou 4.1.x and it seems that this admin tool is available. Is there a way to programmatically do this? I guess you have to use JMX to manipulate Tomcat on the fly. Am I correct?

Re: Server.xml Reload without Restarting Tomcat

2003-03-13 Thread Kwok Peng Tuck
Really? Which version of tomcat are you using ? The max min stuff is under Service (Tomcat Standalone) | -Connector (8080) Someone suggested the use of the Admin servlet but that doesn't really give you a means of changing configurations such as

Re: Server.xml / App Context / Redirect question

2003-02-05 Thread Sean Dockery
Host ... appBase=C:\myWebSite\webapps name=localhost ... Context ... docBase=C:\myWebSite\webapps\projectX path= ... /Context /Host Copy everything in your projectX web application to C:\myWebSite\webapps\projectX. That is... C:\...\projectX\WEB-INF ...etc... C:\...\projectX\index.jsp

Re: server.xml- linking to a context containing a jndi resource fromanother context

2003-01-06 Thread Rosdi bin Kasim
Why didnt you use the tomcat manager/admin?? The manager/admin has been pretty stable and reliable since 4.1.16... No need to edit server.xml directly.. - Original Message - From: Nick Torenvliet [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Sent: Tuesday, January 07,

Re: server.xml- linking to a context containing a jndi resource fromanother context

2003-01-06 Thread Craig R. McClanahan
On 6 Jan 2003, Nick Torenvliet wrote: Date: 06 Jan 2003 22:52:05 -0500 From: Nick Torenvliet [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED], [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: server.xml- linking to a context containing a jndi resource

RE: server.xml instead of httpd.conf - how do you configure Tomacat 4.x/PHP

2002-12-12 Thread Turner, John
Tomcat is a servlet container. It serves content mainly created via JSP and Java servlets. It doesn't have anything to do with PHP. I think there are some development efforts under way to give Tomcat PHP capability by creating the PHP engine as a servlet, but I don't know any details. Tomcat's

Re: Server.xml

2002-12-10 Thread Jacob Kjome
Hello Hari, That's just a matter of the docs being not quite up-to-date. The Coyote connector is the connector for both http and jk (jk and jk2). The other stuff is deprecated, although it still works just fine. Jake Tuesday, December 10, 2002, 12:24:23 PM, you wrote: HV Can somebody

RE: Server.xml

2002-12-10 Thread Hari Venkatesan
PROTECTED]] Sent: Tuesday, December 10, 2002 1:40 PM To: Tomcat Users List Subject: Re: Server.xml Hello Hari, That's just a matter of the docs being not quite up-to-date. The Coyote connector is the connector for both http and jk (jk and jk2). The other stuff is deprecated, although it still works

RE: Server.xml

2002-12-10 Thread Turner, John
people disable the connector on 8080 and leave the one on 8009 (or whatever) enabled. John -Original Message- From: Hari Venkatesan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 10, 2002 1:44 PM To: Tomcat Users List Subject: RE: Server.xml Jake Should I uncomment

Re: server.xml won't change

2002-11-05 Thread Garrett Smith
in your Context docBase= --- Ian Hunter [EMAIL PROTECTED] wrote: I'm having the same problem. If you request a file OTHER than index.jsp, you'll get the correct file, but http://servername/index.jsp is ALWAYS the same file, even if you delete the webapps/ROOT directory. Can anyone help?

Re: server.xml won't change

2002-11-04 Thread Ian Hunter
I'm having the same problem. If you request a file OTHER than index.jsp, you'll get the correct file, but http://servername/index.jsp is ALWAYS the same file, even if you delete the webapps/ROOT directory. Can anyone help? This is really weird!!! - Original Message - From: yoom nguyen

Re: server.xml, EmployeeRecordHome/EmployeeRecord

2002-10-14 Thread Craig R. McClanahan
It's there to prove that Catalina will actually parse an EJB resource reference for you, and create the JavaBeans that record the reference. This can be useful people who are integrating Tomcat into their EJB containers, but not directly useful to an application. Craig On Tue, 15 Oct 2002,

RE: server.xml and configuring connection pools (URGENT: please look)

2002-09-11 Thread Donie Kelly
Thanks Bill I understand you answer. Thank you for that. I was hoping it was different but now that I know what it's doing I'm happier. Donie -Original Message- From: Bill Barker [mailto:[EMAIL PROTECTED]] Sent: 11 September 2002 06:13 To: [EMAIL PROTECTED] Subject: Re: server.xml

RE: server.xml and configuring connection pools (URGENT: please look)

2002-09-10 Thread Donie Kelly
Hi all Simple problem I guess. I'm trying to limit tomcat to 20 threads max but still accept connections using the acceptCount parameter of Connector in server.xml. My problem is that the application will accept up to 20 connections and give connection refused for everything else. What am I

RE: server.xml and configuring connection pools

2002-09-10 Thread Vincent . Gaboriau
are completed? Do they launch others ones? If it's the case, Tomcat cannot have the time to process the 100 ones in the queue. -Message d'origine- De : Donie Kelly [mailto:[EMAIL PROTECTED]] Envoyé : mardi 10 septembre 2002 17:17 À : 'Tomcat Users List' Objet : RE: server.xml and configuring

RE: server.xml and configuring connection pools

2002-09-10 Thread Donie Kelly
Donie -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 10 September 2002 16:47 To: Tomcat Users List Subject: RE: server.xml and configuring connection pools How do you test your configuration? You test with more than 20 users? Your configuration is correct

Re: server.xml and configuring connection pools (URGENT: please look)

2002-09-10 Thread Bill Barker
The acceptCount is nearly useless (unless you *really* know what you are doing), since it only sets the TCP/IP backlog (which is one of those things, that if you don't know what it is, you don't need it :). There is a one-to-one mapping of socket connections to threads, so setting maxProcessors

Re: server.xml, Realms, and WARs

2002-07-11 Thread Craig R. McClanahan
On Thu, 11 Jul 2002, Mark Shaw wrote: Date: Thu, 11 Jul 2002 14:16:24 -0700 From: Mark Shaw [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: server.xml, Realms, and WARs I don't think my problem has a solution, but let me

RE: server.xml, Realms, and WARs

2002-07-11 Thread Mark Shaw
to locate it (although it's in my web-app/lib). Any ideas? -Mark -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002 2:27 PM To: Tomcat Users List Subject: Re: server.xml, Realms, and WARs On Thu, 11 Jul 2002, Mark Shaw wrote: Date

RE: server.xml, Realms, and WARs

2002-07-11 Thread Craig R. McClanahan
On Thu, 11 Jul 2002, Mark Shaw wrote: Date: Thu, 11 Jul 2002 15:02:02 -0700 From: Mark Shaw [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Subject: RE: server.xml, Realms, and WARs Craig, Thanks for the quick answer (as usual

Re: server.xml DTD - where can I find it ?

2002-06-25 Thread Mykola A. Nickishov
Craig R. McClanahan [EMAIL PROTECTED] writes: On Mon, 6 May 2002, João Luiz de Brito Macaíba wrote: Date: Mon, 6 May 2002 11:03:55 -0300 (EST) From: João Luiz de Brito Macaíba [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: server.xml

RE: server.xml DTD - where can I find it ?

2002-06-25 Thread Ricky Leung
server.xml doesn't have a DTD, the web.xml's DTD is what that email was about. -Original Message- From: Mykola A. Nickishov [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 1:14 PM To: Tomcat Users List Subject: Re: server.xml DTD - where can I find it ? Craig R

RE: server.xml dtd

2002-06-11 Thread Whitcomb, Roger
According to one of the developers (Craig McClanahan) (posted last Friday): Where can I find the DTD for web.xml? I want to make sure I have the elements in the correct order. It is in the servlet specification, which you can download from:

RE: server.xml dtd

2002-06-11 Thread Ricky Leung
not the DTD for web.xml but the DTD for server.xml. -Original Message- From: Whitcomb, Roger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 1:35 PM To: Tomcat Users List Subject: RE: server.xml dtd According to one of the developers (Craig McClanahan) (posted last Friday

RE: server.xml dtd

2002-06-11 Thread Whitcomb, Roger
] -Original Message- From: Ricky Leung [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 10:44 AM To: Tomcat Users List Subject: RE: server.xml dtd not the DTD for web.xml but the DTD for server.xml. -Original Message- From: Whitcomb, Roger [mailto:[EMAIL PROTECTED]] Sent

RE: server.xml dtd

2002-06-11 Thread Ricky Leung
:52 PM To: Tomcat Users List Subject: RE: server.xml dtd Ricky - Sorry for the misinformation -- I thought they would both be in the servlet.jar. But, in looking into it further, I don't see any DTD referenced in server.xml, nor do I see one in the servlet.jar. I see doc on the Tomcat web

RE: server.xml dtd

2002-06-11 Thread Eric Everman
and I didn't find a dtd that is for server.xml. And that's why I have to ask the list. -Original Message- From: Whitcomb, Roger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 11, 2002 1:52 PM To: Tomcat Users List Subject: RE: server.xml dtd Ricky - Sorry for the misinformation -- I

Re: server.xml dtd

2002-06-11 Thread Craig R. McClanahan
On Tue, 11 Jun 2002, Ricky Leung wrote: Date: Tue, 11 Jun 2002 13:27:27 -0400 From: Ricky Leung [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: Tomcat Users List [EMAIL PROTECTED] Subject: server.xml dtd I can't find the dtd anywhere and the documentation area only

RE: server.xml

2002-06-03 Thread Douglas, Rory
Have a look in the Tomcat documentation, the listeners tags are documented there (under Administrators - Config.Ref/Connectors - AJP) -Original Message- From: Ron [mailto:[EMAIL PROTECTED]] Sent: Sunday, May 05, 2002 1:05 PM To: Tomcat Users List Subject: server.xml Can someone send a

Re: server.xml DTD - where can I find it ?

2002-05-06 Thread Craig R. McClanahan
On Mon, 6 May 2002, João Luiz de Brito Macaíba wrote: Date: Mon, 6 May 2002 11:03:55 -0300 (EST) From: João Luiz de Brito Macaíba [EMAIL PROTECTED] Reply-To: Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: server.xml DTD - where can I find it ? Hi, does anyone

RE: server.xml - context parameter question

2002-04-30 Thread Abraham Fathman
Tom, I haven't done this before but I thought that it might help you out. Instead of using the server.xml you could try adding your variables as system properties. I believe you can do this by creating a setenv.sh/bat file in your bin directory. Here you can set an environmental variable

Re: server.xml - context parameter question

2002-04-30 Thread Tom Bednarz
for container configuration only. But thanks for the input anyway. Tom - Original Message - From: Abraham Fathman [EMAIL PROTECTED] To: 'Tomcat Users List' [EMAIL PROTECTED] Sent: Tuesday, April 30, 2002 9:31 AM Subject: RE: server.xml - context parameter question Tom, I haven't done

RE: server.xml question

2002-04-30 Thread Whitcomb, Roger
Is it as simple as you misspelled suffix? Roger Whitcomb Computer Associates Senior Software Engineer Development Phone: +1 408 965 8653 FAX: +1 408 965 8805 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original Message- From: rainer jünger [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

Re: server.xml question

2002-04-30 Thread rainer jünger
thanks Roger, well the misspelling was happend only in the email. In the server.xml it is spelled correctly... rainer jünger Is it as simple as you misspelled suffix? Roger Whitcomb Computer Associates Senior Software Engineer Development Phone: +1 408 965 8653 FAX: +1 408 965 8805

RE: server.xml question

2002-04-30 Thread Whitcomb, Roger
Software Engineer Development Phone: +1 408 965 8653 FAX: +1 408 965 8805 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] -Original Message- From: rainer jünger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 10:49 AM To: Tomcat Users List Subject: Re: server.xml question thanks

RE: server.xml question

2002-04-30 Thread Phillip Morelock
At Tuesday, 30 April 2002, you wrote: Here are some suggestions: - Are the log files being written ANYWHERE? Or not at all? - What if you use a relative path (such as logs)? - Are the permissions set correctly for your directory? - What if you DON'T use the trailing / on the directory name?

Re: server.xml question

2002-04-30 Thread rainer jünger
Hi, Actually suggestion number two reminds me: isn't it true that tomcat by default only allows itself to write files underneath TOMCAT_HOME? maybe this doesn't apply to log files. I had a problem a while back as far as trying to write uploaded files to a different directory -- I had two

Re: server.xml question

2002-04-30 Thread rainer jünger
Hi Roger, - Are the permissions set correctly for your directory? that was the reason (stupid me!) chmod 777 ... solved the problem is it normal that there are only very view infos being writen in?? I thougt it is also the access log and the error log? Sofar there are only infos concerning

RE: server.xml question

2002-04-30 Thread Whitcomb, Roger
]] Sent: Tuesday, April 30, 2002 11:52 AM To: Tomcat Users List Subject: Re: server.xml question Hi Roger, - Are the permissions set correctly for your directory? that was the reason (stupid me!) chmod 777 ... solved the problem is it normal that there are only very view infos being writen

Re: server.xml - Multiple Contexts for a Single WebApp

2002-03-08 Thread rsequeira
see intermixed. [EMAIL PROTECTED] on 03/08/2002 08:50:14 AM Please respond to Tomcat Users List [EMAIL PROTECTED] To: [EMAIL PROTECTED] cc: Subject: server.xml - Multiple Contexts for a Single WebApp I am trying to duplicate an issue that I am having when I have Apache connected to

RE: Server.xml for tomcat3.2.3

2002-02-15 Thread Larry Isaacs
The noCookies attribute is found on SessionInterceptor in Tomcat 3.2.x. This is documented in the server.xml. Cheers, Larry -Original Message- From: Gaurav Arya [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 1:47 PM To: Tomcat-User (E-mail) Subject: Server.xml for

RE: server.xml

2001-12-12 Thread Jagan
-Original Message- From: Peng Annie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 10:02 PM To: 'Tomcat Users List' Subject: server.xml Hi, I am using apache1.3.20, tomcat4.0 on Windows 2000. Can anyone send me a working server.xml file (including other applications

RE: server.xml code insert....

2001-08-24 Thread Larry Isaacs
Are you sure you are using Tomcat 3.2.3 or looking at the wrong documentation. You are citing documentation that exists only in Tomcat 3.3. Cheers, Larry -Original Message- From: Bob Wilson [mailto:[EMAIL PROTECTED]] Sent: Friday, August 24, 2001 12:17 PM To: [EMAIL PROTECTED] Subject:

RE: server.xml code insert....

2001-08-24 Thread Bob Wilson
PROTECTED] Subject: RE: server.xml code insert Date: Fri, 24 Aug 2001 13:11:55 -0400 Are you sure you are using Tomcat 3.2.3 or looking at the wrong documentation. You are citing documentation that exists only in Tomcat 3.3. Cheers, Larry -Original Message- From: Bob Wilson [mailto:[EMAIL

  1   2   >