I think to meet your requirement you need the configuration to be like this
Code:
ProxyPass / http://localhost:8080/ShoppingCart
I am not 100% sure, I think this is right. The way you have it setup you would be need to go to
www.xxxx.com/ShoppingCart and you would get the Tomcat main menu.
The first parameter in ProxyPass is the path in the URL, and the second is what to point it too.
Normally it would be like this:
Code:
ProxyPass /ShoppingCart http://localhost:8080/ShoppingCart
This is who you get Apache to front tomcat (the easy way).
Thy these or a few variations and see how it works out. Reload Apache after each change. I got this info here
http://tomcat.apache.org/tomcat-6.0-doc/proxy-howto.html