Hi,
You have to use an ajp13 rule and set up the tomcat server to respond to it.
This is from the httpd.conf
<IFModule mod_jk.c>
JkWorkersFile /tmp/workers.properties
JkLogFile /tmp/mod_jk.log
JkLogLevel debug
JkMount /jetspeed/* ajp13
JkMount /vqwiki-2.4.0/* ajp13
</IFModule>
Create a workers.conf file with
worker.list=ajp13
worker.ajp13.host=localhost
worker.ajp13.type=ajp13
worker.ajp13.port=8009
ps=/
and add this to your tomcat4 server.xml file
<Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
port="8009" minProcessors="5" maxProcessors="75"
acceptCount="10" debug="0"/>
Mike.
-----Original Message-----
From: Wilson, Allen [mailto:[EMAIL PROTECTED]
Sent: April 2, 2004 6:27 PM
To: Jetspeed Users List
Subject: Jetspeed within a HTTP Server/Tomcat Config
Good Afternoon....
Has anyone implemented Jetspeed in an environment where you have Apache
and Tomcat working together? If so, how do you config the Apache Server
to deal with the Jetspeed mapping?
For example, the URL for requesting a new Jetspeed account is
http://yourserver.com/portal/portal/template/NewAccount but when working
within the Apache/Tomcat mix...this URL fails.
Any help would be appreciated...
Allen