I'm trying to deploy a WAR file under Windows Server 2003 but I'm unable to get it working. I've worked through a couple tutorials, but my issue is that I'm trying to use different ports.
Jboss is running on port 9001 and the IIS site is using port 8090 for TCP. Basically, I should be using ajp workers and isapi_redirect.dll to redirect to my WAR. The last thing to do in the tutorial is create a virtual directory for your application that points to an index.htm that then redirects to your application using a metatag:
<META HTTP-EQUIV="refresh" CONTENT="0;URL=http://localhost/application_name/">
Since I'm using port 8090 for the IIS site, I changed the URL to http://localhost:8090/CrashTest/ but then it gets stuck in an endless redirect loop because traffic comes in and hits the index.html then directs to CrashTest/index.htm which continues redirecting to index.htm. If I change it to localhost:9001 then I can access the CrashTest app internally only.
It's confusing me, hopefully someone could point me in the right direction. I don't understand why it's looping since I only created one index.htm file but for some reason it's showing the index.htm in / and /CrashTest/... IIS is all new to me and so far it doesn't seem very fun.
The instructions I'm following are at: jboss.org/index.html?module=bb&op=viewtopic&p=3816794#3803150