replace tomcat-coyote.jar, tomcat-http11.jar, tomcat-jk2.jar
and tomcat-util.jar in server/lib
add tomcat4-coyote.jar to server/lib
copy mx4j-jmx.jar ( or jmxri.jar ) to common/lib.
edit server.xml, comment out the original connector (
org.apache.catalina.connector.http.HttpConnector ) and uncomment the
coyote connector ( in <Connector className="org.apache.coyote.tomcat4.CoyoteConnector" /> )
also in server.xml, comment out the ajp connector (
org.apache.ajp.tomcat4.Ajp13Connector ) and add a jk2 connector:
<Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
port="8009" minProcessors="5" maxProcessors="75"
enableLookups="true" redirectPort="8443"
acceptCount="10" debug="0" connectionTimeout="0"
useURIValidationHack="false"
protocolHandlerClassName="org.apache.jk.server.JkCoyoteHandler"/>