Hi list, I am trying ajp connector for apache to tomcat
using mod_ajp apache2.2 and tomcat 5.5 on Debian platform apache and Tomcat are in separate boxes both are in same LAN. and apache machine is bind to a public IP address in firwall level. this is the virtual host configuration <VirtualHost *:80> ServerName demo.mydomain.in ProxyPass / balancer://mycluster/ ProxyPassReverse / balancer://mycluster/ <Proxy balancer://mycluster> BalancerMember ajp://192.168.31.128:8009/MyJava min=10 max=100 Allow from all </Proxy> when I access demo.mydomain.in the home page of MyJava is served by my apache box, and when enter login name & password to login into the application and press submit button , getting error in browser the requested resource path is incorrect . But If I access the MyJava application from the Ipaddress of the tomcat box by http://Ipaddress:8080/MyJava able to login and perform actions in the Java applications. What I made wrong , any error in the Vhost entry. Let me request h your valuable advice and hints to solve the issue Thanks in advance kk
