Re: server.xml question on Tag (ignore the question)

2006-04-20 Thread Rumpa Giri
Ignore the question, found the answer reading docs. Our tomcat instances did not open the http port only uses the Coyote/JK2 AJP 1.3 Connector. Thanks, Rumpa Giri Rumpa Giri <[EMAIL PROTECTED]> wrote: Hello, While configuring tomcat can I do the following in the server.xml? In the current ser

Re: server.xml question on Tag

2006-04-20 Thread Mark Thomas
Rumpa Giri wrote: I believe the intention was to create only the AJP connector, so doing the following should suffice right? Yep, this is fine if you only want access through IIS. enableLookups="false" redirectPort="8443" debug="0" protocol="AJP/1.3" />

Re: server.xml question on Tag

2006-04-20 Thread Rumpa Giri
I am trying to understand our existing configuration. On our production servers, we use IIS as webserver, and I think we disabled the http connector by putting the extra protocol attribute right in the http connector tag. Thats why so many attributes. I believe the intention was to create only

Re: server.xml question on Tag

2006-04-20 Thread Mark Thomas
Rumpa Giri wrote: Hello, While configuring tomcat can I do the following in the server.xml? Probably not. What are you trying to achieve? What you have done is to create a AJP connector with a bunch of attributes it doesn't understand and will therefore ignore. Mark

server.xml question on Tag

2006-04-20 Thread Rumpa Giri
Hello, While configuring tomcat can I do the following in the server.xml? In the current server.xml the following is present : >> snipped from server.xml >> end snippet Can I merge them together in one Connector tag like following? We are