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

    How to debug ISAPI dlls?

    I am writing an ISAPI DLL. I don't know how to debug the ISAPI dll from the visual studio. Can anybody tell me how to do it please?



  2. #2
    Join Date
    Apr 1999
    Posts
    19

    Re: How to debug ISAPI dlls?

    Compile the DLL in Debug Mode and have it referenced by a virtual directory in IIS.
    Start up IIS
    Attach to process inetinfo (you need to view system processes)
    Execute your DLL to some extent so it gets loaded
    Load your .cpp file to debug and place a breakpoint
    Execute the path you want to debug and your breakpoint should hit.

    -H

    -
    Howard Uman - unHUman Software
    http://www.unhuman.com
    [email protected]

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