I have a sharepoint application on root of my webserver. Is it possible to have sharepoint (2010) and IIS 7.5 share the same port (80)?
To be specific, the problem is with a web application I need to host on IIS default web web site. Isn't there a way to exclude some directory from sharepoint?
Edit: Apparently I asked a wrong question. The scenario I was working on was to put a ASP.Net application under a Sharepoint website. (eg sharepointserver/aspapp) It turned out that I should not expect my files to be served from inetpub\wwwroot. since sharepoint has created another site on port 80 inetpub\wwwroot\wss I had to put my files there. It's fixed now, but the new problem irrelevant to the previous one is hosting a Asp.Net 4 application under a Asp.Net 2 application (sharepoint 2010). Apparently web configs get mixed up and produce some problem. At the end I've given up and hosted my Asp.Net 4 app on another port! :)