I'm at a complete loss here. Nothing I do seems to work. Everything is set up correctly. I've followed the documentation at http://tomcat.apache.org/connectors-doc/webserver_howto/iis.html, and my setup looks correct and I've tripple checked it till I'm blue in the face (so to speak). All I get is a blank page - http://www.douglasmcgregor.co.uk/HelloWorld.jsp
workers.properties
worker.list=worker1
worker.worker1.host=www.douglasmcgregor.co.uk
worker.worker1.port=8009
worker.worker1.type=ajp13
uriworkermap.properties
*.jsp=worker1
/examples/*=worker1
Server.xml (the virtual host I added)
<Host name="www.douglasmcgregor.co.uk" appBase="E:/douglasmcgregor.co.uk"
unpackWARs="true" autoDeploy="true">
<Alias>douglasmcgregor.co.uk</Alias>
<Alias>www</Alias>
<Context path="/" docBase="E:/douglasmcgregor.co.uk" debug="0" />
</Host>
I set up IIS as in the documentation. For a while it worked flirting between HelloWorld.jsp and /examples/, but examples give a 404 in Tomcat now which suggests something's working. The blank page persistantly won't change.
Help!! And thanks, by the way.
Douglas