Click to See Complete Forum and Search --> : Debugging not working on client machine


prachi001
September 23rd, 2008, 07:41 AM
Hello,

I am working on ASP.NET 2.0.

I am using windows IIS server to run the asp.net project.

There is one server machine, where IIS server and asp.net application reside. On this machine debugging is working properly.

There is another machine which we can say a client machine, on which I open my server's asp.net project. Nowon this machine debugging is not working.

If anyone know the answer please help me.

Thank you.

MMH
September 25th, 2008, 02:01 PM
Debugging will only work on the localhost - where your IIS hosted app and project is on the same machine.
The simple reason for this is; your aspnet worker process will allow you to attach and debug your code only if it is hosted on the same machine.
And you cannot attach your code to asp.net application which resides on different machine.

For that purpose, you have to do remote debugging.
have a look :
http://support.microsoft.com/kb/910448

I guess this helps.
Mazhar.