Separate Web Applications using only port number
I am trying to use the same URL (app.test.com) but different port numbers (80,81) to separate traffic to two separate web applications. Is that doable? If so how? I have tried creating new virtual classes and/or new virtual servers and can assign the new listen socket to the original virtual server provided by the web server. But when i try assigning either listen socket to my new class or server, no joy.
[415 byte] By [
derenh] at [2007-11-26 8:15:56]

# 1
yes, it is very much doable
- create 2 http listeners (say ls1 and ls2)
- create 1 virtual server and default virtual server (and get it hooked up to ls1)
- create 2nd virtual server and defautl virtual sever (and hook it up to ls2)
now within virtual sever 1, add the web app that you would like to have it separated . similarly, you can do for the next virual sever as well.
no need for multiple virtual server classes here.