server.xml « Tomcat « JSP-Servlet Q&A





1. How does debug level (0-99) in the Tomcat server.xml affect speed?    stackoverflow.com

The server.xml which controls the startup of Apache Tomcat's servlet container contains a debug attribute for nearly every major component. The debug attribute is more or less verbose depending upon ...

2. Programmatically get Tomcat HTTP Connector's maxPostSize in a JSP    stackoverflow.com

I am using Tomcat 6 and would like to be able to retrieve the maxPostSize (defined in the HTTP Connector in server.xml) programmatically from within a JSP so that I can ...

3. I have a in web.xml that is not matched by a in server.xml, but still works. Is this wrong?    stackoverflow.com

(Tomcat 5.5) I put the elements for each of my webapps in server.xml. For my main webapp, it has a resource:

<Resource name="mail/Session" auth="Container" type="javax.mail.Session" mail.smtp.host="localhost" />
I've been working on a ...

4. how reload the servlet without restart the tomcat6 server    stackoverflow.com

If I have multiple Host definition on my $TOMCAT_HOME/conf/server.xml How can I reload the servlet without restart the tomcat6 server? What are the parameters for use Tomcat like with multiple host? unpackWARs ...

5. Accessing docBase property of another servlet in Tomcat 7    stackoverflow.com

The web application I am working on needs to return dynamic URLs to clients (the HATEOAS principle of the REST methodology). Some of the paths involve files that live in a ...

6. Servlet mapping in tomcat w/o access to server.xml    coderanch.com

I have tried myself to map a URI to a servlet, but am having partial success. On my machine, it works, but when I upload the application, the URI is not directed to the servlet. My web.xml servlet mapping looks like this: Controller util.Controller Controller /welcome If I go ...