Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Dear CPians: Help me out by voting for this

Dear CPians: Help me out by voting for this

Scheduled Pinned Locked Moved The Lounge
helpcsharpdatabasecomdebugging
52 Posts 19 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • B BryanWilkins

    Done! :)

    J Offline
    J Offline
    Judah Gabriel Himango
    wrote on last edited by
    #12

    Thank you, Bryan!

    Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

    1 Reply Last reply
    0
    • J Judah Gabriel Himango

      Dear CPians, Have you ever written a .NET desktop or web application that talks to a SQL database? Uses WinForms controls? Talks to COM objects? Talks to Win32 via P/Invoke? If so, you may have run into the dreaded AccessViolationException: Some managed code called into unmanaged code, and memory was corrupted. Maybe you passed a bad argument to the unmanaged function. Maybe there's a bug in the managed-to-native interop. Whatever the case, when it happens, all you get is an unhelpful message and a useless stack trace, making it near-impossible to debug. Please vote up this MSConnect case[^] so Microsoft gives us more information when these errors occur. If MS gives us more information, devs can fix crashing .NET apps, users will be happier, and the world will be a better place. Thank you.

      Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

      R Offline
      R Offline
      Rama Krishna Vavilala
      wrote on last edited by
      #13

      OK, I don't get it. I do a pretty hefty mixed mode debugging and always am able to narrow down the cause of problem. The trick is to use mixed-mode debugging and stop on unmanaged exceptions. So what am I missing?

      J 1 Reply Last reply
      0
      • J Judah Gabriel Himango

        Dear CPians, Have you ever written a .NET desktop or web application that talks to a SQL database? Uses WinForms controls? Talks to COM objects? Talks to Win32 via P/Invoke? If so, you may have run into the dreaded AccessViolationException: Some managed code called into unmanaged code, and memory was corrupted. Maybe you passed a bad argument to the unmanaged function. Maybe there's a bug in the managed-to-native interop. Whatever the case, when it happens, all you get is an unhelpful message and a useless stack trace, making it near-impossible to debug. Please vote up this MSConnect case[^] so Microsoft gives us more information when these errors occur. If MS gives us more information, devs can fix crashing .NET apps, users will be happier, and the world will be a better place. Thank you.

        Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

        M Offline
        M Offline
        Mustafa Ismail Mustafa
        wrote on last edited by
        #14

        Vote++;

        If the post was helpful, please vote, eh! Current activities: Book: Devils by Fyodor Dostoyevsky Project: Hospital Automation, final stage Learning: Image analysis, LINQ Now and forever, defiant to the end. What is Multiple Sclerosis[^]?

        J 1 Reply Last reply
        0
        • M Mustafa Ismail Mustafa

          Vote++;

          If the post was helpful, please vote, eh! Current activities: Book: Devils by Fyodor Dostoyevsky Project: Hospital Automation, final stage Learning: Image analysis, LINQ Now and forever, defiant to the end. What is Multiple Sclerosis[^]?

          J Offline
          J Offline
          Judah Gabriel Himango
          wrote on last edited by
          #15

          Thanks, Mustafa!

          Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

          M 1 Reply Last reply
          0
          • R Rama Krishna Vavilala

            OK, I don't get it. I do a pretty hefty mixed mode debugging and always am able to narrow down the cause of problem. The trick is to use mixed-mode debugging and stop on unmanaged exceptions. So what am I missing?

            J Offline
            J Offline
            Judah Gabriel Himango
            wrote on last edited by
            #16

            The exception almost never occurs on our dev machines, but instead on end user machines where no debugger is installed. The exception reported to us is near useless:

            System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Stack Trace: at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg) at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData) at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.Run(Form mainForm) at MyProgram.Main

            Is there some secret way to debug such crashing errors? If not, I'm asking for more information in the error message to help us track down the error.

            Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

            R 1 Reply Last reply
            0
            • J Judah Gabriel Himango

              Thanks, Mustafa!

              Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

              M Offline
              M Offline
              Mustafa Ismail Mustafa
              wrote on last edited by
              #17

              No worries :) Besides, I'll get a benefit out of this too! (assuming they actually help out)

              If the post was helpful, please vote, eh! Current activities: Book: Devils by Fyodor Dostoyevsky Project: Hospital Automation, final stage Learning: Image analysis, LINQ Now and forever, defiant to the end. What is Multiple Sclerosis[^]?

              1 Reply Last reply
              0
              • J Judah Gabriel Himango

                Dear CPians, Have you ever written a .NET desktop or web application that talks to a SQL database? Uses WinForms controls? Talks to COM objects? Talks to Win32 via P/Invoke? If so, you may have run into the dreaded AccessViolationException: Some managed code called into unmanaged code, and memory was corrupted. Maybe you passed a bad argument to the unmanaged function. Maybe there's a bug in the managed-to-native interop. Whatever the case, when it happens, all you get is an unhelpful message and a useless stack trace, making it near-impossible to debug. Please vote up this MSConnect case[^] so Microsoft gives us more information when these errors occur. If MS gives us more information, devs can fix crashing .NET apps, users will be happier, and the world will be a better place. Thank you.

                Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

                R Offline
                R Offline
                Rajesh R Subramanian
                wrote on last edited by
                #18

                Hi Judah, You have my vote on that.

                It is a crappy thing, but it's life -^ Carlo Pallini

                J 1 Reply Last reply
                0
                • R Rajesh R Subramanian

                  Hi Judah, You have my vote on that.

                  It is a crappy thing, but it's life -^ Carlo Pallini

                  J Offline
                  J Offline
                  Judah Gabriel Himango
                  wrote on last edited by
                  #19

                  Thanks, Rajesh!

                  Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

                  1 Reply Last reply
                  0
                  • J Judah Gabriel Himango

                    The exception almost never occurs on our dev machines, but instead on end user machines where no debugger is installed. The exception reported to us is near useless:

                    System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Stack Trace: at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg) at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData) at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context) at System.Windows.Forms.Application.Run(Form mainForm) at MyProgram.Main

                    Is there some secret way to debug such crashing errors? If not, I'm asking for more information in the error message to help us track down the error.

                    Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

                    R Offline
                    R Offline
                    Rama Krishna Vavilala
                    wrote on last edited by
                    #20

                    Yes there is. Do you want me to post here or as an article? Are programming ansers allowed in Lounge?

                    J D 2 Replies Last reply
                    0
                    • R Rama Krishna Vavilala

                      Yes there is. Do you want me to post here or as an article? Are programming ansers allowed in Lounge?

                      J Offline
                      J Offline
                      Judah Gabriel Himango
                      wrote on last edited by
                      #21

                      Hahah. Awesome. Rama to the Rescue. Doesn't matter to me whether it's an article or an lounge answer. Please show us your magic tricks, uncle Rama. :) On second thought, an article would probably be better. Share the wealth of knowledge, get more publicity.

                      Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

                      R 1 Reply Last reply
                      0
                      • J Judah Gabriel Himango

                        Dear CPians, Have you ever written a .NET desktop or web application that talks to a SQL database? Uses WinForms controls? Talks to COM objects? Talks to Win32 via P/Invoke? If so, you may have run into the dreaded AccessViolationException: Some managed code called into unmanaged code, and memory was corrupted. Maybe you passed a bad argument to the unmanaged function. Maybe there's a bug in the managed-to-native interop. Whatever the case, when it happens, all you get is an unhelpful message and a useless stack trace, making it near-impossible to debug. Please vote up this MSConnect case[^] so Microsoft gives us more information when these errors occur. If MS gives us more information, devs can fix crashing .NET apps, users will be happier, and the world will be a better place. Thank you.

                        Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

                        D Offline
                        D Offline
                        Dan Neely
                        wrote on last edited by
                        #22

                        [Message Deleted]

                        M J 2 Replies Last reply
                        0
                        • D Dan Neely

                          [Message Deleted]

                          J Offline
                          J Offline
                          Judah Gabriel Himango
                          wrote on last edited by
                          #23

                          :confused:

                          Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

                          1 Reply Last reply
                          0
                          • D Dan Neely

                            [Message Deleted]

                            M Offline
                            M Offline
                            Mustafa Ismail Mustafa
                            wrote on last edited by
                            #24

                            Uh... reply to the wrong post! Oh how will you get over the shame!!! ;p

                            If the post was helpful, please vote, eh! Current activities: Book: Devils by Fyodor Dostoyevsky Project: Hospital Automation, final stage Learning: Image analysis, LINQ Now and forever, defiant to the end. What is Multiple Sclerosis[^]?

                            D 1 Reply Last reply
                            0
                            • J Judah Gabriel Himango

                              Hahah. Awesome. Rama to the Rescue. Doesn't matter to me whether it's an article or an lounge answer. Please show us your magic tricks, uncle Rama. :) On second thought, an article would probably be better. Share the wealth of knowledge, get more publicity.

                              Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

                              R Offline
                              R Offline
                              Rama Krishna Vavilala
                              wrote on last edited by
                              #25

                              I wrote a test application to validate my theory and it works. Of course, it can be improved a lot. The idea is to get the dll name and the address at which the access violation occured. I wrote a C++ dll called Crasher with a method that causes access violation:

                              extern "C" _declspec(dllexport) int _stdcall CrashMyApp()
                              {
                              char* sz = 0;
                              *sz = 0;

                              return -1;
                              

                              }

                              Now I call this from a managed assemvbly and catch access violation and get more information:

                              static void Main(string[] args)
                              {
                              try
                              {
                              CrashMyApp();
                              }
                              catch (AccessViolationException)
                              {
                              IntPtr ex = Marshal.GetExceptionPointers();

                                  EXCEPTION\_POINTERS pointers = (EXCEPTION\_POINTERS)Marshal.PtrToStructure(ex, typeof(EXCEPTION\_POINTERS));
                                  EXCEPTION\_RECORD rec = (EXCEPTION\_RECORD)Marshal.PtrToStructure(pointers.ExceptionRecord, typeof(EXCEPTION\_RECORD));
                                  Console.WriteLine("Exception in {0} at {1:x8}", DllNameFromAddress(rec.ExceptionAddress), rec.ExceptionAddress.ToInt32());
                              
                                  // Usually you wil re-throw may be wrapping in some other exception
                                  // Bad idea to catch AccessViolationException and do nothing
                              }
                              

                              }

                              All the utility methods are in the project download link at the bottom of the post. So the output is like this:

                              Exception in C:\Users\ramakrishna\Documents\Visual Studio 2008\Projects\UnmanagedDebugging\Debug\Crasher.dll at 77b71328

                              Download link here: Crasher.zip (8.5 KB) Of course, you can build a lot fancy stuff like load the symbols, generate mini-dumps etc.

                              J D D A 4 Replies Last reply
                              0
                              • R Rama Krishna Vavilala

                                Yes there is. Do you want me to post here or as an article? Are programming ansers allowed in Lounge?

                                D Offline
                                D Offline
                                Dan Neely
                                wrote on last edited by
                                #26

                                IF you do this as an article, please post something to let us know. I don't check the article feed often enough to spot a lot of new stuff.

                                The latest nation. Procrastination.

                                R 1 Reply Last reply
                                0
                                • R Rama Krishna Vavilala

                                  I wrote a test application to validate my theory and it works. Of course, it can be improved a lot. The idea is to get the dll name and the address at which the access violation occured. I wrote a C++ dll called Crasher with a method that causes access violation:

                                  extern "C" _declspec(dllexport) int _stdcall CrashMyApp()
                                  {
                                  char* sz = 0;
                                  *sz = 0;

                                  return -1;
                                  

                                  }

                                  Now I call this from a managed assemvbly and catch access violation and get more information:

                                  static void Main(string[] args)
                                  {
                                  try
                                  {
                                  CrashMyApp();
                                  }
                                  catch (AccessViolationException)
                                  {
                                  IntPtr ex = Marshal.GetExceptionPointers();

                                      EXCEPTION\_POINTERS pointers = (EXCEPTION\_POINTERS)Marshal.PtrToStructure(ex, typeof(EXCEPTION\_POINTERS));
                                      EXCEPTION\_RECORD rec = (EXCEPTION\_RECORD)Marshal.PtrToStructure(pointers.ExceptionRecord, typeof(EXCEPTION\_RECORD));
                                      Console.WriteLine("Exception in {0} at {1:x8}", DllNameFromAddress(rec.ExceptionAddress), rec.ExceptionAddress.ToInt32());
                                  
                                      // Usually you wil re-throw may be wrapping in some other exception
                                      // Bad idea to catch AccessViolationException and do nothing
                                  }
                                  

                                  }

                                  All the utility methods are in the project download link at the bottom of the post. So the output is like this:

                                  Exception in C:\Users\ramakrishna\Documents\Visual Studio 2008\Projects\UnmanagedDebugging\Debug\Crasher.dll at 77b71328

                                  Download link here: Crasher.zip (8.5 KB) Of course, you can build a lot fancy stuff like load the symbols, generate mini-dumps etc.

                                  J Offline
                                  J Offline
                                  Judah Gabriel Himango
                                  wrote on last edited by
                                  #27

                                  Rama, you're a rockstar. I'll give this a try and see if we can implement it in our app. That would at least give us a clue as to which dll failed. Thanks a million!

                                  Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

                                  R 1 Reply Last reply
                                  0
                                  • M Mustafa Ismail Mustafa

                                    Uh... reply to the wrong post! Oh how will you get over the shame!!! ;p

                                    If the post was helpful, please vote, eh! Current activities: Book: Devils by Fyodor Dostoyevsky Project: Hospital Automation, final stage Learning: Image analysis, LINQ Now and forever, defiant to the end. What is Multiple Sclerosis[^]?

                                    D Offline
                                    D Offline
                                    Dan Neely
                                    wrote on last edited by
                                    #28

                                    I don't know what you're talking about. :-O

                                    The latest nation. Procrastination.

                                    1 Reply Last reply
                                    0
                                    • J Judah Gabriel Himango

                                      Rama, you're a rockstar. I'll give this a try and see if we can implement it in our app. That would at least give us a clue as to which dll failed. Thanks a million!

                                      Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

                                      R Offline
                                      R Offline
                                      Rama Krishna Vavilala
                                      wrote on last edited by
                                      #29

                                      Probably it might be easier to put the code in an event handler for Application.ThreadException. That way you don't have to add individual try-catch blocks.

                                      J I 2 Replies Last reply
                                      0
                                      • D Dan Neely

                                        IF you do this as an article, please post something to let us know. I don't check the article feed often enough to spot a lot of new stuff.

                                        The latest nation. Procrastination.

                                        R Offline
                                        R Offline
                                        Rama Krishna Vavilala
                                        wrote on last edited by
                                        #30

                                        I don't think I will be able to post as an article in finite time. So I have posted a reply to Judah with code.

                                        1 Reply Last reply
                                        0
                                        • R Rama Krishna Vavilala

                                          Probably it might be easier to put the code in an event handler for Application.ThreadException. That way you don't have to add individual try-catch blocks.

                                          J Offline
                                          J Offline
                                          Judah Gabriel Himango
                                          wrote on last edited by
                                          #31

                                          Yep, that's what I had in mind, too. Thanks again!

                                          Religiously blogging on the intarwebs since the early 21st century: Kineti L'Tziyon Judah Himango

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups