Debugging .NET DLLs registered as COM

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • agoyal2
    New Member
    • Apr 2007
    • 5

    Debugging .NET DLLs registered as COM

    Hi All,

    I have a peculiar problem. My application has a .NET DLL which has been registered as a COM object. (exporting the TLB and using regasm.exe). Now, some functions in this DLL are called from an ASP page.

    The problem is when I attach the aspnet_wp process in the visual studio to debug it, the execution never hits. I even tried unregistering it from the registry and repeating the process to no avail.

    Please help!
  • mrmelvin
    New Member
    • Aug 2008
    • 4

    #2
    As a first line of troubleshooting , I would check to see if the project was compiled in debug mode and not release mode. I'm refering to the compilation setting in the project properties.

    Comment

    Working...