multi user debugging in ASP.NET application

  • Thread starter Thread starter Farooq Khan
  • Start date Start date
F

Farooq Khan

hello everyone,
i have an asp.net application set up on one of my servers that i would like
to be debugged from different client machines simultaneously. when i try to
do that i get a message saying that edbugger is already attached (if one of
client machine is already debugging). can anyone tell me if there's a way
for multiple users to debug same application at the same time???

Best regards,
Farooq Khan
 
hello everyone,
i have an asp.net application set up on one of my servers that i would like
to be debugged from different client machines simultaneously. when i try to
do that i get a message saying that edbugger is already attached (if one of
client machine is already debugging). can anyone tell me if there's a way
for multiple users to debug same application at the same time???

Best regards,
Farooq Khan

Nope. One process, one debugger. It's not even really conceivable: imagine
if you hit "single-step" when another user debugging the same process tried
to change a variable value, or worse yet use "Set next statement". The poor
process would have no idea what to do.
 
Back
Top