Tagged Questions

2
votes
3answers
2k views

What is empty session path in tomcat?

I have read apache tomcat documentation a day before, and I am so confused about emptySessionPath . Up to my knowledge, if it's set to true, the emptySessionPath is stored at the root folder of web ...
1
vote
0answers
58 views

Tomcat request forwarding via service/connector

i'm looking for a way to forward requests. I want to set the filtering rules (by URI) in my service (conf/server.xml). Is that possible? Here my example service: <Service name="indexbuilder"> ...
1
vote
1answer
859 views

What is the JBoss equivalent of Tomcat's server.xml?

I am running an application which was deployed on JBoss. There is only documentation for Tomcat, none for JBoss. I need to change some connector tag attributes to look like so: <Connector ...
1
vote
2answers
1k views

What is the Simplest Tomcat/Apache Connector (Windows)?

I have apache 2.2 and tomcat 5.5 running on a Windows XP machine. Which tomcat/apache connector is the easiest to set up and is well documented?
0
votes
2answers
46 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
18 views

What connector implementation is used in my Tomcat?

Tomcat manual sais there are several connector implementations: http://tomcat.apache.org/tomcat-6.0-doc/config/http.html see the table below for implementing class names. How do I know, which one ...
0
votes
0answers
171 views

Java Servlet container for IIS

I'm trying to configure the visualisation SDK from Thinkmap.com to use it in an IIS7 environment. Does anyone have any experience of this? Thinkmap is served from Tomcat but I'd like to embed the ...
0
votes
1answer
690 views

Using other HTTP connectors with JBoss 5.1

I'm trying to use a "better" HTTP connector than JBoss' default HTTP/1.1 connector. Following BalusC's recommendations, I changed the connector in server.xml to: <Connector ...