Visual Studio 2003 on Application Server

  • Thread starter Thread starter HeadScratcher
  • Start date Start date
H

HeadScratcher

Everyone,

Currently we have installed Visual Studio on our Applicatoin Server.
All of our developers log into this machine and develop dotNet code.

We have recently started writing ASP.net code. Each time the one of
them debugs their application, the others are not able to debug theirs.


The others get the following error message:
Error while trying to run project: Unable to start debugging on the web
server. A debugger is already attached.

Each developer is working on a differenct application.

Any suggestions on what is causing this issue?

Thanks in advance.

Mayur Patel
 
only one debug session per app pool (asp worker process) is allowed. if you
are on 2003, give each avirdir its own app pool. if you are on win2k, you
are stuck with only 1 debugging session for all sites (as win200 only runs 1
worker process).

-- bruce (sqlwork.com)
 
Back
Top