The principle is that Tomcat should receive all the traffic for the webapp containing axis.  The client sends a call to the endpoint in the wsdl.  Apache is listening on that port (the http port usually) and redirects.

If your webapp in tomcat is named axis, and you invoke services using something like http://myserver.mydomain.com/axis/services/myservice, all you need to do, in /etc/httpd/conf.d/jk.conf

JkMount /axis/* ajp13x

where ajp13x is the name of an AJP13 worker that you configure in the same file.  That worker must be configured to use the port on which Tomcat is listening for AJP13 connections, as set up in Tomcat's server.conf..  See the docs for configuring mod_jk.

Jeff




Peter Neu wrote:
Hello,

I'm seriously stuck with my problem. Does anyone have an example how to
connect through apache httpd (proxy with jk_module) to axis running on
tomcat server? 

  

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

Reply via email to