The server.xml tag has no wiki summary.
2
votes
1answer
1k views
Programmatically get Tomcat HTTP Connector's maxPostSize in a JSP
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 know what the max file upload ...
2
votes
1answer
490 views
Tomcat´s server.xml dynamic configuration
My web application uses the same database configuration as the application XYZ. I have a resource declaration for a context in server.xml, so I have a duplicated configuration (once for web ...
1
vote
1answer
112 views
Adding server-specific options to an Eclipse-managed Tomcat instance (in server.xml)
How can I make sure that the server.xml which Eclipse produces for every separate project that relies on Tomcat, will always contain a specific option, which I added manually?
I'd like to add a bunch ...
1
vote
2answers
609 views
mvn tomcat:run - how do I edit server.xml?
I want to run "mvn tomcat:run" from the command line, but how can I edit the server.xml to set maxHttpHeaderSize="65536" in the connectors? Or can I configure the connectors in the pom.xml?
Cheers
...
1
vote
1answer
3k views
Why is my Tomcat 6 executor thread pool not being used by the connector?
My server.xml looks like the following:
<!--The connectors can use a shared executor, you can define one or more named thread pools-->
<Executor name="tomcatThreadPool"
...
1
vote
2answers
1k views
Tomcat runs but complains about missing server.xml
I'm using ubuntu 9.10 and I installed java and tomcat using the package manager. When I went to run startup.sh, it first complains about catalina.out not being there and not being writable. I fixed ...
0
votes
0answers
19 views
How to configure Tomcat 7.0.23 conf/server.xml for <Realms> using sun.jdbc.odbc.JdbcOdbcDriver and MS Access database?
In my Practice_Database.accdb database I have 1 table EmployeeSearch with fields Emp_Names, Emp_Pass and Roll_Names.
I do not have a seperate Roles table. I have configured the database correctly as ...
0
votes
2answers
66 views
Why is tomcat refreshing pages permanently
I am developing a spring mvc application on tomcat. the problem is that tomcat is refreshing pages each 2/3minutes, i can't see why !
my config is
web.xml
<?xml version="1.0" ...
0
votes
2answers
55 views
Two connectors in tomcat's server.xml
I have two web applications, which I want to be running under the one tomcat instance, but on a different ports to connect, for example first war - under 8080, and second - 8090. Is it possible to do ...
0
votes
0answers
15 views
Tomcat - How to specify properties that can be expanded in server.xml
Currently, I have in my server.xml:
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" />
I want it to become:
<Connector ...
0
votes
0answers
83 views
Accessing docBase property of another servlet in Tomcat 7
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 static folder on the file ...
0
votes
0answers
26 views
allowing and blocking hosts with tomcat's server.xml
I'm trying to allow only a specific website to access my geoserver-service in tomcat6. Everything else needs to be blocked.
I've tried to allow my site in the server.xml, but so far all I've managed ...
0
votes
2answers
319 views
how reload the servlet without restart the tomcat6 server
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?
...
0
votes
0answers
551 views
Application in Liferay available via two different URLs
I use Liferay Portal 6.0.6 with Tomcat 6.0.29.
I need my application be available via two different URLs:
http://localhost:8080/
http://localhost:8080/simple
For that I add two Context elements to ...
0
votes
1answer
335 views
Moving contents of META-INF/context.xml to tomcat/conf
We are trying to take the environment specific configuration settings out of our war files, so we can deploy the same war file to dev/test/prod tomcat servers and not have to change the contents of ...
0
votes
1answer
454 views
Tomcat's server.xml host container and Varnish
In the past I've used the host container to route the root uri to a tomcat webapp, like this:
<Host name="myapp.mydomain.com" appBase="webapps">
<Alias>myapp</Alias>
...
0
votes
2answers
319 views
Is this a JBOSS web service? Tomcat? How to create a server.xml file?
I am working on a webservice that a previous employee built and I am just trying to figure out what documentation I need to be looking at. I think that the webservice is using JBOSS and therefore ...