Attach to Process

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • GaryDean

    #1

    Attach to Process

    I see some references on debugging by attaching to a process. There are
    MSDN articles that show how to attach to a process for debugging. However,
    I can find no info on how exactly to get the debugging to work.

    I have a wizard page in the anonymous section of my website. If I run it as
    the startup page in VS it runs fine. But if I link to it from an external
    link, it gets "object reference not set to an instance of an object" when I
    try to navigate to wizard step 2.

    I was hoping to use the attach to process to debug this situation but
    nothing I try works. How can I step through code this way?
    Thanks,
    Gary

  • Cowboy \(Gregory A. Beamer\)

    #2
    Re: Attach to Process

    With web apps, you need to get the debugger attached prior to entering the
    cycle for a particular piece of functionality. If you are using a wizard,
    you cannot attach after you start the wizard, as some of the context is not
    available to the debugger. If this page has to be your starting point,
    attach and then start again.

    If this is not your issue, post back and we can see if we can work through
    this.

    --
    Gregory A. Beamer
    MVP, MCP: +I, SE, SD, DBA

    Subscribe to my blog


    or just read it:


    *************** *************** **************
    | Think outside the box! |
    *************** *************** **************
    "GaryDean" <gdeanblakely@n ewsgroup.nospam wrote in message
    news:OWPCfyfPJH A.2316@TK2MSFTN GP03.phx.gbl...
    >I see some references on debugging by attaching to a process. There are
    >MSDN articles that show how to attach to a process for debugging. However,
    >I can find no info on how exactly to get the debugging to work.
    >
    I have a wizard page in the anonymous section of my website. If I run it
    as the startup page in VS it runs fine. But if I link to it from an
    external link, it gets "object reference not set to an instance of an
    object" when I try to navigate to wizard step 2.
    >
    I was hoping to use the attach to process to debug this situation but
    nothing I try works. How can I step through code this way?
    Thanks,
    Gary

    Comment

    • Allen Chen [MSFT]

      #3
      RE: Attach to Process

      Hello Gary,

      Do you mean you're using the ASP.NET Wizard control on the page? If so
      please refer to the following article. It demonstrates how to debug the
      source code:

      http://blogs.msdn.com/sburke/archive...sual-studio-to
      -debug-net-framework-source-code.aspx

      Please let me know if it works. If my understanding is wrong please correct
      me and clarify the problem.

      Regards,
      Allen Chen
      Microsoft Online Support

      Delighting our customers is our #1 priority. We welcome your comments and
      suggestions about how we can improve the support we provide to you. Please
      feel free to let my manager know what you think of the level of service
      provided. You can send feedback directly to my manager at:
      msdnmg@microsof t.com.

      =============== =============== =============== =====
      Get notification to my posts through email? Please refer to
      http://msdn.microsoft.com/en-us/subs...#notifications.

      Note: MSDN Managed Newsgroup support offering is for non-urgent issues
      where an initial response from the community or a Microsoft Support
      Engineer within 2 business day is acceptable. Please note that each follow
      up response may take approximately 2 business days as the support
      professional working with you may need further investigation to reach the
      most efficient resolution. The offering is not appropriate for situations
      that require urgent, real-time or phone-based interactions. Issues of this
      nature are best handled working with a dedicated Microsoft Support Engineer
      by contacting Microsoft Customer Support Services (CSS) at
      http://msdn.microsoft.com/en-us/subs.../aa948874.aspx
      =============== =============== =============== =====
      This posting is provided "AS IS" with no warranties, and confers no rights.

      --------------------
      | From: "GaryDean" <gdeanblakely@n ewsgroup.nospam >
      | Subject: Attach to Process
      | Date: Mon, 3 Nov 2008 14:39:14 -0700
      | Lines: 14
      | MIME-Version: 1.0
      | Content-Type: text/plain;
      | format=flowed;
      | charset="iso-8859-1";
      | reply-type=original
      | Content-Transfer-Encoding: 7bit
      | X-Priority: 3
      | X-MSMail-Priority: Normal
      | X-Newsreader: Microsoft Windows Mail 6.0.6001.18000
      | X-MimeOLE: Produced By Microsoft MimeOLE V6.0.6001.18049
      | Message-ID: <OWPCfyfPJHA.23 16@TK2MSFTNGP03 .phx.gbl>
      | Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
      | NNTP-Posting-Host: ip68-110-7-92.tc.ph.cox.ne t 68.110.7.92
      | Path: TK2MSFTNGHUB02. phx.gbl!TK2MSFT NGP01.phx.gbl!T K2MSFTNGP03.phx .gbl
      | Xref: TK2MSFTNGHUB02. phx.gbl
      microsoft.publi c.dotnet.framew ork.aspnet:7914 0
      | X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
      |
      | I see some references on debugging by attaching to a process. There are
      | MSDN articles that show how to attach to a process for debugging.
      However,
      | I can find no info on how exactly to get the debugging to work.
      |
      | I have a wizard page in the anonymous section of my website. If I run it
      as
      | the startup page in VS it runs fine. But if I link to it from an
      external
      | link, it gets "object reference not set to an instance of an object" when
      I
      | try to navigate to wizard step 2.
      |
      | I was hoping to use the attach to process to debug this situation but
      | nothing I try works. How can I step through code this way?
      | Thanks,
      | Gary
      |
      |

      Comment

      • GaryDean

        #4
        Re: Attach to Process

        Actually my question has to do with how to debug and step through managed
        CLR code applications that are running by themselves - not in visual studio
        debugger. I know how to debug and step through code in Visual Studio -
        That's easy. There are lots of reasons for this...

        Program that blows when running by itsself but not when in VS
        Debuging a System Service
        Debuging a WCF service that's only failing in production

        Googling around I see a lot about DbgClr.exe and attaching to processes.
        However I notice that DbgClr.exe no longer comes with VS2008 so I'm thinking
        there is a better way. Yet I notice that if I go to
        http://msdn.microsoft.com/en-us/library/7zxbks7z.aspx which is 3.5 it still
        talks about DbgClr.exe. So, before I dive into learning a method I wanted
        to make sure I am using the best and most effective method.
        Thanks,
        Gary

        "Cowboy (Gregory A. Beamer)" <NoSpamMgbworld @comcast.netNoS pamMwrote in
        message news:%23dXFCEhP JHA.3748@TK2MSF TNGP04.phx.gbl. ..
        With web apps, you need to get the debugger attached prior to entering the
        cycle for a particular piece of functionality. If you are using a wizard,
        you cannot attach after you start the wizard, as some of the context is
        not available to the debugger. If this page has to be your starting point,
        attach and then start again.
        >
        If this is not your issue, post back and we can see if we can work through
        this.
        >
        --
        Gregory A. Beamer
        MVP, MCP: +I, SE, SD, DBA
        >
        Subscribe to my blog

        >
        or just read it:

        >
        *************** *************** **************
        | Think outside the box! |
        *************** *************** **************
        "GaryDean" <gdeanblakely@n ewsgroup.nospam wrote in message
        news:OWPCfyfPJH A.2316@TK2MSFTN GP03.phx.gbl...
        >>I see some references on debugging by attaching to a process. There are
        >>MSDN articles that show how to attach to a process for debugging.
        >>However, I can find no info on how exactly to get the debugging to work.
        >>
        >I have a wizard page in the anonymous section of my website. If I run it
        >as the startup page in VS it runs fine. But if I link to it from an
        >external link, it gets "object reference not set to an instance of an
        >object" when I try to navigate to wizard step 2.
        >>
        >I was hoping to use the attach to process to debug this situation but
        >nothing I try works. How can I step through code this way?
        >Thanks,
        >Gary
        >

        Comment

        • GaryDean

          #5
          Re: Attach to Process

          Actually my question has to do with how to debug and step through managed
          CLR code applications that are running by themselves - not in visual studio
          debugger. I know how to debug and step through code in Visual Studio -
          That's easy. There are lots of reasons for this...

          Program that blows when running by itsself but not when in VS
          Debuging a System Service
          Debuging a WCF service that's only failing in production

          Googling around I see a lot about DbgClr.exe and attaching to processes.
          However I notice that DbgClr.exe no longer comes with VS2008 so I'm thinking
          there is a better way. Yet I notice that if I go to
          http://msdn.microsoft.com/en-us/library/7zxbks7z.aspx which is 3.5 it still
          talks about DbgClr.exe. So, before I dive into learning a method I wanted
          to make sure I am using the best and most effective method.
          Thanks,
          Gary

          "Cowboy (Gregory A. Beamer)" <NoSpamMgbworld @comcast.netNoS pamMwrote in
          message news:%23dXFCEhP JHA.3748@TK2MSF TNGP04.phx.gbl. ..
          With web apps, you need to get the debugger attached prior to entering the
          cycle for a particular piece of functionality. If you are using a wizard,
          you cannot attach after you start the wizard, as some of the context is
          not available to the debugger. If this page has to be your starting point,
          attach and then start again.
          >
          If this is not your issue, post back and we can see if we can work through
          this.
          >
          --
          Gregory A. Beamer
          MVP, MCP: +I, SE, SD, DBA
          >
          Subscribe to my blog

          >
          or just read it:

          >
          *************** *************** **************
          | Think outside the box! |
          *************** *************** **************
          "GaryDean" <gdeanblakely@n ewsgroup.nospam wrote in message
          news:OWPCfyfPJH A.2316@TK2MSFTN GP03.phx.gbl...
          >>I see some references on debugging by attaching to a process. There are
          >>MSDN articles that show how to attach to a process for debugging.
          >>However, I can find no info on how exactly to get the debugging to work.
          >>
          >I have a wizard page in the anonymous section of my website. If I run it
          >as the startup page in VS it runs fine. But if I link to it from an
          >external link, it gets "object reference not set to an instance of an
          >object" when I try to navigate to wizard step 2.
          >>
          >I was hoping to use the attach to process to debug this situation but
          >nothing I try works. How can I step through code this way?
          >Thanks,
          >Gary
          >

          Comment

          • Allen Chen [MSFT]

            #6
            Re: Attach to Process

            Hello Gary,

            From your description I think you mainly have two questions.

            1. What the best and most effective way is to troubleshoot "object
            reference not set to an instance of an object" issue that is mentioned in
            your initial post. In your project you're using ASP.NET Wizard control and
            this exception is thrown when you navigate to wizard step 2.

            2. Where you can get DbgClr.exe for Visual Studio 2008.

            As to your first issue the most effective way to troubleshoot is to use
            Visual Studio to debug. Actually by checking the call stack we may diagnose
            most of this kind of problems. You can also send a demo project to me. I'll
            debug on my side to see what the problem is. My email is
            v-alchen@microsof t.com.

            As to your second question, the DbgClr doesn't ship with the SDK anymore.
            You can use MDbg instead:

            http://msdn.microsoft.com/en-us/library/ms229861.aspx

            In addition, to diagnose the problems we have other choices. For example we
            can enable tracing to diagnose WCF issues:
            http://msdn.microsoft.com/en-us/library/ms733025.aspx

            If you have further questions please feel free to ask.

            Regards,
            Allen Chen
            Microsoft Online Support

            --------------------
            | From: "GaryDean" <gdeanblakely@n ewsgroup.nospam >
            | References: <OWPCfyfPJHA.23 16@TK2MSFTNGP03 .phx.gbl>
            <#dXFCEhPJHA.37 48@TK2MSFTNGP04 .phx.gbl>
            | In-Reply-To: <#dXFCEhPJHA.37 48@TK2MSFTNGP04 .phx.gbl>
            | Subject: Re: Attach to Process
            | Date: Thu, 6 Nov 2008 17:30:59 -0700
            | Lines: 59
            | MIME-Version: 1.0
            | Content-Type: text/plain;
            | format=flowed;
            | charset="iso-8859-1";
            | reply-type=response
            | Content-Transfer-Encoding: 7bit
            | X-Priority: 3
            | X-MSMail-Priority: Normal
            | X-Newsreader: Microsoft Windows Mail 6.0.6001.18000
            | X-MimeOLE: Produced By Microsoft MimeOLE V6.0.6001.18049
            | Message-ID: <eVy4wAHQJHA.40 04@TK2MSFTNGP03 .phx.gbl>
            | Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
            | NNTP-Posting-Host: ip68-110-7-92.tc.ph.cox.ne t 68.110.7.92
            | Path: TK2MSFTNGHUB02. phx.gbl!TK2MSFT NGP01.phx.gbl!T K2MSFTNGP03.phx .gbl
            | Xref: TK2MSFTNGHUB02. phx.gbl
            microsoft.publi c.dotnet.framew ork.aspnet:7937 8
            | X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
            |
            | Actually my question has to do with how to debug and step through managed
            | CLR code applications that are running by themselves - not in visual
            studio
            | debugger. I know how to debug and step through code in Visual Studio -
            | That's easy. There are lots of reasons for this...
            |
            | Program that blows when running by itsself but not when in VS
            | Debuging a System Service
            | Debuging a WCF service that's only failing in production
            |
            | Googling around I see a lot about DbgClr.exe and attaching to processes.
            | However I notice that DbgClr.exe no longer comes with VS2008 so I'm
            thinking
            | there is a better way. Yet I notice that if I go to
            | http://msdn.microsoft.com/en-us/library/7zxbks7z.aspx which is 3.5 it
            still
            | talks about DbgClr.exe. So, before I dive into learning a method I
            wanted
            | to make sure I am using the best and most effective method.
            | Thanks,
            | Gary
            |
            | "Cowboy (Gregory A. Beamer)" <NoSpamMgbworld @comcast.netNoS pamMwrote in
            | message news:%23dXFCEhP JHA.3748@TK2MSF TNGP04.phx.gbl. ..
            | With web apps, you need to get the debugger attached prior to entering
            the
            | cycle for a particular piece of functionality. If you are using a
            wizard,
            | you cannot attach after you start the wizard, as some of the context is
            | not available to the debugger. If this page has to be your starting
            point,
            | attach and then start again.
            | >
            | If this is not your issue, post back and we can see if we can work
            through
            | this.
            | >
            | --
            | Gregory A. Beamer
            | MVP, MCP: +I, SE, SD, DBA
            | >
            | Subscribe to my blog
            | http://feeds.feedburner.com/GregoryBeamer#
            | >
            | or just read it:
            | http://feeds.feedburner.com/GregoryBeamer
            | >
            | *************** *************** **************
            | | Think outside the box! |
            | *************** *************** **************
            | "GaryDean" <gdeanblakely@n ewsgroup.nospam wrote in message
            | news:OWPCfyfPJH A.2316@TK2MSFTN GP03.phx.gbl...
            | >>I see some references on debugging by attaching to a process. There
            are
            | >>MSDN articles that show how to attach to a process for debugging.
            | >>However, I can find no info on how exactly to get the debugging to work.
            | >>
            | >I have a wizard page in the anonymous section of my website. If I run
            it
            | >as the startup page in VS it runs fine. But if I link to it from an
            | >external link, it gets "object reference not set to an instance of an
            | >object" when I try to navigate to wizard step 2.
            | >>
            | >I was hoping to use the attach to process to debug this situation but
            | >nothing I try works. How can I step through code this way?
            | >Thanks,
            | >Gary
            | >
            |
            |

            Comment

            • Allen Chen [MSFT]

              #7
              Re: Attach to Process

              Hello Gary,

              Do you have any other questions?

              Regards,
              Allen Chen
              Microsoft Online Community Support
              --------------------
              | From: "GaryDean" <gdeanblakely@n ewsgroup.nospam >
              | References: <OWPCfyfPJHA.23 16@TK2MSFTNGP03 .phx.gbl>
              <#dXFCEhPJHA.37 48@TK2MSFTNGP04 .phx.gbl>
              | In-Reply-To: <#dXFCEhPJHA.37 48@TK2MSFTNGP04 .phx.gbl>
              | Subject: Re: Attach to Process
              | Date: Thu, 6 Nov 2008 17:30:59 -0700
              | Lines: 59
              | MIME-Version: 1.0
              | Content-Type: text/plain;
              | format=flowed;
              | charset="iso-8859-1";
              | reply-type=response
              | Content-Transfer-Encoding: 7bit
              | X-Priority: 3
              | X-MSMail-Priority: Normal
              | X-Newsreader: Microsoft Windows Mail 6.0.6001.18000
              | X-MimeOLE: Produced By Microsoft MimeOLE V6.0.6001.18049
              | Message-ID: <eVy4wAHQJHA.40 04@TK2MSFTNGP03 .phx.gbl>
              | Newsgroups: microsoft.publi c.dotnet.framew ork.aspnet
              | NNTP-Posting-Host: ip68-110-7-92.tc.ph.cox.ne t 68.110.7.92
              | Path: TK2MSFTNGHUB02. phx.gbl!TK2MSFT NGP01.phx.gbl!T K2MSFTNGP03.phx .gbl
              | Xref: TK2MSFTNGHUB02. phx.gbl
              microsoft.publi c.dotnet.framew ork.aspnet:7937 8
              | X-Tomcat-NG: microsoft.publi c.dotnet.framew ork.aspnet
              |
              | Actually my question has to do with how to debug and step through managed
              | CLR code applications that are running by themselves - not in visual
              studio
              | debugger. I know how to debug and step through code in Visual Studio -
              | That's easy. There are lots of reasons for this...
              |
              | Program that blows when running by itsself but not when in VS
              | Debuging a System Service
              | Debuging a WCF service that's only failing in production
              |
              | Googling around I see a lot about DbgClr.exe and attaching to processes.
              | However I notice that DbgClr.exe no longer comes with VS2008 so I'm
              thinking
              | there is a better way. Yet I notice that if I go to
              | http://msdn.microsoft.com/en-us/library/7zxbks7z.aspx which is 3.5 it
              still
              | talks about DbgClr.exe. So, before I dive into learning a method I
              wanted
              | to make sure I am using the best and most effective method.
              | Thanks,
              | Gary
              |
              | "Cowboy (Gregory A. Beamer)" <NoSpamMgbworld @comcast.netNoS pamMwrote in
              | message news:%23dXFCEhP JHA.3748@TK2MSF TNGP04.phx.gbl. ..
              | With web apps, you need to get the debugger attached prior to entering
              the
              | cycle for a particular piece of functionality. If you are using a
              wizard,
              | you cannot attach after you start the wizard, as some of the context is
              | not available to the debugger. If this page has to be your starting
              point,
              | attach and then start again.
              | >
              | If this is not your issue, post back and we can see if we can work
              through
              | this.
              | >
              | --
              | Gregory A. Beamer
              | MVP, MCP: +I, SE, SD, DBA
              | >
              | Subscribe to my blog
              | http://feeds.feedburner.com/GregoryBeamer#
              | >
              | or just read it:
              | http://feeds.feedburner.com/GregoryBeamer
              | >
              | *************** *************** **************
              | | Think outside the box! |
              | *************** *************** **************
              | "GaryDean" <gdeanblakely@n ewsgroup.nospam wrote in message
              | news:OWPCfyfPJH A.2316@TK2MSFTN GP03.phx.gbl...
              | >>I see some references on debugging by attaching to a process. There
              are
              | >>MSDN articles that show how to attach to a process for debugging.
              | >>However, I can find no info on how exactly to get the debugging to work.
              | >>
              | >I have a wizard page in the anonymous section of my website. If I run
              it
              | >as the startup page in VS it runs fine. But if I link to it from an
              | >external link, it gets "object reference not set to an instance of an
              | >object" when I try to navigate to wizard step 2.
              | >>
              | >I was hoping to use the attach to process to debug this situation but
              | >nothing I try works. How can I step through code this way?
              | >Thanks,
              | >Gary
              | >
              |
              |

              Comment

              Working...