I've read tomcat documentation to install a new application with new JVM. Well... 1) I've created a new server.xml --> server_vs.xml with one only application (VirtualHost) definition. 9081 = tomcat web server port 9009 = tomcat connector 2) I've installed this application in webapps/VenetianStyle 3) If I launch http://venetianstyle:9081/ (Virtualhost defines in server_vs.xml with Host tag) the application is OK! 4) Now I insert VirtualHost tag in tomcat-apache.conf: <VirtualHost 192.168.1.10> ServerName venetianstyle.prosa.com ServerAlias venetianstyle ApJServMount / ajpv12://localhost:9009/VenetianStyle </VirtualHost> If I restart httpd server and I launch http://venetianstyle/ browser open html page, but it doesn't open servlet application... CAN SOMEONE HELP ME FOR THIS PROBLEM???
