> from the production server of the same application.  I believe this
will
> require a second instance of Tomcat so I can set different ports for
the
> Test and Prod to talk to Tomcat.  I will also set different listening
ports
> for each instance of Tomcat to listen  (8080,7080).

Would it not be easier to have a single instance of tomcat but with two
context settings in <tomcat-path>/conf/server.xml, ie one for each .war,
eg

<Context path="/test" docBase="C:\<path-to-test-war>"
debug="0" privileged="true"/>

<Context path="/<actual-production-path-for-url>"
docBase="C:\<path-to-production-war>" debug="0" privileged="true"/>


They could then both be accessed using the same port but with a
different url eg

http://some.server.com:8080/test/foo/bar.html - for test
http://some.server.com:8080/<actual-production-path-for-url>/foo/bar.htm
l - for production

<actual-production-path-for-url> could be just "/"

John


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to