isapi-extension

How to run classic ASP scripts under IIS 5.1 (WinXP Pro) alongside .NET & CF?

I'm running into a problem setting up my development environment. I've been working on ColdFusion and .NET applications up until recently I haven't needed to touch IIS. Now, I have to set up a classic ASP application for some one-off work. I added a virtual directory in IIS and pointed it at the actual codebase on my local machine. I th...

choosing a SOAP library to integrate with ISAPI webapp

Hi, The company I work for has a large webapp written in C++ as an ISAPI extension (not a filter). We're currently enhancing our system to integrate with several 3rd party tools that have SOAP interfaces. Rather than roll our own, I think it would probably be best if we used some SOAP library. Ideally, it would be free and open source...

ISAPI Extensions: What is the difference between TerminateExtension and the extensions destructor?

Is there a difference between TerminateExtension() and the extensions destructor? Obviously both are used to cleanup resources but what kind of cleanup should be in one function and not the other? ...

Using an ISAPI Filter in Visual Studio Development Server

I'm trying to get a current web application running on my local machine, for dev purposes... the previous developer left abruptly and didn't document ANYTHING. Basically, it uses an ISAPI filter, installed into IIS for some url redirection... this is fine, but, i want to set it up on my local dev machine... How can i go about doing that...

Is HSE_REQ_EXEC_UNICODE_URL just a slow operation when replacing the request entity body?

I have an ISAPI extension that does some processing on file uploads before they are passed to an ASP.NET application. I'm using the HSE_REQ_EXEC_UNICODE_URL mechanism in IIS 6.0 to replace the entire request entity body. This works, but it seems to be horribly slow with larger request bodies. Over the LAN if I upload a 12MB file normal...

How to update Http Request and send it to another web server

Following is our environment setup: IIS 7 receives Http (.jsp) request from client (browser). It blindly redirects it to JBoss using ISAPI_Redirect.dll. Now we are trying to modify this setup in such a way that before IIS7/ISAPI_redirect sends it to JBoss, we need to modify posted form data using Http module. This http module is normal...

Install ISAPI extensions programmatically in IIS7

Hi, I want to install ISAPI extensions in IIS7 on Windows7 programmatically (Control Panel -> Programs and features->Turn windows features on or off->IIS->WWW->Application Development feature->ISAPI Extensions). Basically I want to achieve what I can do with following DISM command dism /online /Enable-Feature /FeatureName:IIS-ISAPIEx...