vote up 2 vote down star
2

I am trying to debug a web application through IIS that has a virtual directory other than localhost. It compiles fine but gets the above message anytime that I try to start debugging. I have compilation debug="true".

flag

Which version of Visual Studio are you using? – Martin Brown Nov 3 '08 at 16:37
Also, which version of Windows and x86 or x64? – duckworth Nov 3 '08 at 17:35

3 Answers

vote up 2 vote down check

Right click your 'web' project and select 'property pages'. Then change 'Start Options' to 'Don't open a page. Wait for a request from an external application.' and for server, select 'Use custom server' with Base URL: 'http://localhost/your_virtual_dir/'

Then with a web browser opened pointing to the IIS location (and virtual dir) you setup, the two should work in tandem with each other.

Hope that helped.

link|flag
+1! Just been following every other MS initiated instruction on the web, then saw this. Turns out one of our devs changed localhost to their own machine name and checked it in.... – Martin Pritchard Sep 2 at 7:39
vote up 1 vote down

Error: Unable to Start Debugging on the Web Server

Check the points in the MSDN article above. IME, its normally one of these things:

  1. Has the application directory been created as an application in IIS? On the Directory tab, under Application Settings, next to the application name you will see the create button. Click this!

  2. On the ASP.NET tab in IIS, has the correct version of the framework been selected?

  3. Re-register ASP.NET: From a command prompt window, run the following command: systemroot\Microsoft.NET\Framework\ versionNumber \aspnet_regiis -i

link|flag
vote up 0 vote down

There could be many reason why you get that error. Microsoft has an article with things to try to solve the problem.

http://msdn.microsoft.com/en-us/library/dwesw3ee(VS.71).aspx

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.