If I need to "co-exist" on a server that already has IIS running, and using the main ports, I can run Aware on any ports, right?
Are there any gotchas in doing this?
1st one I ran across is trying to have a subdomain come to the server. jaymer.mycoolapps.com
gets a 404 Not Found, because IIS hasn't been told anything about this (I assume).
So is there a built-in way in IIS to redirect a subdomain to http://mycoolapps.com:8080/AwareIM2/index.html ?
or do I do something like this? (this is a trick from this forum, in the ROOT dir to repoint to your bsv dir )
<% response.sendRedirect("/AwareIM2/index.html"); %>
<html>
<body>
test page
</body>
</html>
thx