Roger Ramjet wrote:Well, since you could call the asp pages from IIS if it were on a different box, your problems arise because you are trying to run 2 web-servers on the same box. Not something I've tried myself.
It's certainly possible to do this, but you may not need to.
If you need to run IIS in order to continue serving the asp pages, you can also configure IIS to support PHP. Then your IIS server will happily serve both .pas and .php pages.
If yu have some reason why you would prefer the complication and waste of running both webservers, then you can certainly install both on the same server. However you will have to get your hands dirty with some tricky configuration.
You could have each server listening to a different port, so that requests to www.yoursite.com go to IIS while [url]www.yoursite.com:8080[/url] go to apache. This might cause problems with network devices between your webserver and your visitors as you will be using relatively non-standard ports, and some devices may prevent access.
You might also be able to do something with Network Address Translation, but that could be even more tricky.