I am trying to get tomcat and apache AJP connection to work using mod

*I have the following configuration for apache 2.2.15 httpd.conf:*

Listen *9093*

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_ajp_module modules/mod_proxy_ajp.so

<Proxy *>
AddDefaultCharset Off
Order deny,allow
Allow from all
</Proxy>
ProxyPass /MOVE ajp://spdlws01.hsn.net:9393/
ProxyPassReverse /MOVE ajp://spdlws01.hsn.net:9393/

*Error from apache access.log *

10.17.113.24 - - [07/Apr/2011:11:36:53 -0400] "GET /MOVE/login.jsp HTTP/1.1"
400 -
10.17.113.24 - - [07/Apr/2011:11:37:33 -0400] "GET /MOVE/login.jsp HTTP/1.1"
400 -
10.17.113.24 - - [07/Apr/2011:11:37:34 -0400] "GET /MOVE/login.jsp HTTP/1.1"
400 -
10.17.113.24 - - [07/Apr/2011:11:37:35 -0400] "GET /MOVE/login.jsp HTTP/1.1"
400 -


On the tomcat side, the code is located in $TOMCAT_HOME/webapps
AJP port is 9393
HTTP port is 9593.

The website on tomcat is running on 9593.

When I try to invoke the website on 9093 (which is apache listen port), I
get page cannot be displayed error.
Also when I invoke website on apache listen port, catalina logs are not
updated at all.

Reply via email to