Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
2k views

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 ...
1
vote
1answer
235 views

ISAPI Extension gives 404 on IIS7

I'm running windows 7 64-bit and trying to load an ISAPI Extension I'm busy writing on my local IIS7 machine. I added the location to the DLL under "ISAPI and CGI Restrictions" I made the ...
1
vote
0answers
354 views

Install ISAPI extensions programmatically in IIS7

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 ...
1
vote
1answer
570 views

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, ...
0
votes
0answers
16 views

How to link request in ISAPI extension to response in ISAPI filter?

I'm building sort of a http sniffer for IIS6, for that I'm using both ISAPI filter and ISAPI extension. Extension - to read the request. Filter - to read the response. The reason i'm using extension ...
0
votes
0answers
31 views

CPU Usage detection not work from ISAPI Extension (IIS7)

I wrote a program that detects CPU usage using Performance Counters and PDH functions: http://msdn.microsoft.com/en-us/library/aa373214(v=VS.85).aspx The same code works as expected when it is in a ...
0
votes
1answer
41 views

Problem with multiple ISAPI Extensions processing the same request (Exchange 2003)

I am trying to add an ISAPI extension that would read the request content before it goes on to the original extension that processes the request. To be more specific, I added my ISAPI extension in ...
0
votes
1answer
142 views

IIS ISAPI Extension + How to Modify HTTP response body

On IIS6, I know ISAPI filter can easily do this, but I am trying to do the same in an ISAPI Extension. I would like to let IIS handle a request, but be able to Append some string to the response. Is ...
0
votes
1answer
80 views

Isapi filter - state

I have a isapi filer and I want to add a logic based on the incoming domain ( my server farm hosts many domains). There domain list is dynamic , I can export these domain list into a text file and ...
0
votes
1answer
185 views

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 ...
0
votes
1answer
200 views

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?
0
votes
3answers
553 views

choosing a SOAP library to integrate with ISAPI webapp

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 ...