You can make Apache communicate over mod_jk with both Tomcats (the one your are using for Passthru and the one comming with Tamino WebDAV Server [TWS]).
The easiest way to achieve it is to allow the mod_jk module used for TWS to communicate with Passthru as well:
1) in Apache’s httpd.conf, remove the “include …/apache-connector.conf” for the Apache-Passthru communication.
2) open the file xdav-apache.conf [located in /jakarta-tomcat/conf/jk] in an editor and add the following 2 lines for Passthru:
JkMount /examples/* ptr
JkMount /examples/servlet/* ptr
3) open the file xdav-workers.properties [located in the same directory] in an editor and add the following 4 lines to add a new worker “ptr” for Passthru:
worker.ptr.port=8009
worker.ptr.host=localhost
worker.ptr.type=ajp13
worker.ptr.lbfactor=1
Moreover, modify the 2 lines listing the workers [“worker.list=ajp13” and “worker.loadbalancer.balanced_workers=ajp13”] to contain the new worker “ptr”:
worker.list=ajp13,ptr
worker.loadbalancer.balanced_workers=ajp13,ptr
Restart Apache and that’s all.
#webMethods#API-Management#Tamino