how to Debug ISAPI DLL

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default how to Debug ISAPI DLL

    Hi
    I am developing a ISAPI dll. Can anyone help me how to debug it, in the VC6
    IDE.

    Regards
    Prashant Sharma


    ISDC Guest

  2. Similar Questions and Discussions

    1. ASP Calling ISAPI DLL
      Hello ALL, I have ASP pages that calls some ISAPI dll that created using Delphi for generating reports. The report page opens fine for 1st time...
    2. ISAPI?
      I need some help finding information on CF upgrades and ISAPI. Someone suggested that my CF MX 7 upgrade did not upgrade ISAPI. Where can I find...
    3. anyone used ISAPI?
      I believe that ISAPI can convert a search engine friendly url string into a querystring? does anyone have any tutorials about using this feature in...
    4. ISAPI
      anyone know how to use this component, am i right in thinking that it will convert something like default.asp?pageid=100&cat=74 to ...
    5. Which installation best for XP+ IIS 5.1: CGI, CLI or ISAPI??
      Hello Everyone: I am running XP Pro with IIS 5.1. Which is the best PHP version to install: CGI, CLI or ISAPI?? The installation manual...
  3. #2

    Default Re: how to Debug ISAPI DLL


    "ISDC" <satish7684@hotmail.com> wrote in message
    news:OoroBugZHHA.2448@TK2MSFTNGP02.phx.gbl...
    > Hi
    > I am developing a ISAPI dll. Can anyone help me how to debug it, in the
    VC6
    > IDE.
    >
    > Regards
    > Prashant Sharma
    >
    >
    Build the project in debug configuration.

    ISAPI Filter:-

    Add the dll from the debug output to a website.
    In VC6 debug processes and Attach to INETINFO.exe process.
    Set your break points
    Hit a URL from a browser which will invoke the code in your filter.

    ISAPI Extension:-

    Create a virtual folder to point to the folder containing you output dll

    Now depending on what isolation you are running the application as:-

    Low:-
    Attach to the INETINFO.exe
    Medium:-
    Use component Services MMC to see COM+ apps in Status View.
    Find PID of the IIS Out-Of-Process Pooled Applications app
    In VC attach to the DLLHOST.EXE process with that PID.
    High:-
    Use component Services MMC to see COM+ apps in Status View.
    Find PID of the IIS-{<path>} app where <path> is path to the application
    In VC attach to the DLLHOST.EXE process with that PID.

    Set your break points
    Hit a URL from a browser which will invoke the extension



    Anthony Jones Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139