CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2008
    Posts
    29

    Question Debugging not working on client machine

    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.

  2. #2
    Join Date
    Jan 2006
    Location
    18° 32' N / 73° 52' E
    Posts
    416

    Re: Debugging not working on client machine

    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.
    Last edited by MMH; September 25th, 2008 at 02:43 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured