Ask a Question related to ASP Components, Design and Development.
-
ISDC #1
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
-
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... -
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... -
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... -
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 ... -
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... -
Anthony Jones #2
Re: how to Debug ISAPI DLL
"ISDC" <satish7684@hotmail.com> wrote in message
news:OoroBugZHHA.2448@TK2MSFTNGP02.phx.gbl...VC6> Hi
> I am developing a ISAPI dll. Can anyone help me how to debug it, in theBuild the project in debug configuration.> IDE.
>
> Regards
> Prashant Sharma
>
>
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



Reply With Quote

