isapi

write client ip in iis 7.0 log over firewalls

Hi, I need a solution for IIS 7.0 which runs on windows server 2008 64bit to write my clients IP to IIS logs while the server is behind firewalls and proxies (Pass X-Forwarded-For header value). I've tried to install the an ISAPI Filter written by Joe Pruitt. it works great on Windows Server 2003 32bit IIS 6.0, but seems to do nothing ...

ISAPI Rewrite Forwarding

does anyone know how i can get a domain to forward to another domain using the ISAPI Rewrite trying to get www.olddomain1.com and www.olddomain2.com to forward to www.newdomain.com this should be easy but i just cant get it... thanks ...

Apache Hosted Web Service Doesn't Handle TRemotable classes.

I started with an ISAPI DLL which I created with Delphi 2009, This module perform as expected when runnining in ISS 5.1 on Windows XP. This same module when hosted using Apache 2.2.15 and mod_isapi does not function correctly. To eliminate the possibility that the mod_isapi has some flaw, an Apache Shared Object module of the same servic...

MVC2 + ASP.NET 4.0 + IIS6 + extensionless URLS, no longer need wildcard mapping?

I noticed that asp.net 4.0 now installs a top-level isapi plugin (in iis6), such that it can inspect every request coming to the server. Should this now allow us to run MVC applications with extensionless URLS and have the aspnet isapi process them correctly without requiring the wildcard mapping (and avoid the performance penalties asso...

Helicon Isapi re write not working on shared hosting

Hi all, I have a shared hosting solution, and I am trying to use Isapi re write with it. I have two problems, the first is that when I use a .htaccess file i get an error abot IIS password not working. I think this is because there is a service called iis password installed that looks for a .htaccess file first. (I don't know what it d...

Accessing raw HTTP response data through unmanaged ISAPI Extension

Howdy all, I have a web server farm (Win2k3 + IIS6) with a mixture of vendor-provided and homegrown ASP.NET applications. I would like to have a mechanism by which I can log the entire bodies of both the request and the response from a given HTTP request/response pair. I can't use an HttpModule or its ilk because not all of the applic...

How do i set ISAPI to ignore adword tags etc

Right I may not explain this properly but here's my best shot: So we have a large site that is using ISAPI filtering. for the site to find the page it needs it breaks down the url and builds up the page from modules/controllers in the db. the client has some adwords running and the adword tags are being picked up by the ISAPI filter, so ...

Trying to map subdomain to another using ISAPI Rewrite on IIS 6

Hi all, I've been experiementing with URL rewriting in IIS 6 and 7. On IIS 6, I've been using ISAPI Rewrite 3 and am trying to map URLs for one subdomain to another e.g. http://subdomain1.domain.com/* would be mapped to: http://subdomain2.domain.com/* I've tried to achieve this using: RewriteEngine on RewriteCond Host: subdomain1....

Bad Http request when accessing request.form object in an isapi component/ isapi_redirector.dll

When a request object is accessed from isapi_redirector.dll ( attempting to redirect to jboss) , the request is converted to a bad request ( as displayed on the browser) NameValueCollection oForm= context.request.Form; ...

Obscure IIS7 ISAPI Filter problem

Hey, I am currently trying to migrate a legacy ASP application from Windows Server 2000 and IIS5 on to Windows Server 2008 and IIS7. The authentication for this application uses an ISAPI filter. Both the application and the ISAPI filter work in the new environment except for one problem. The application in question is set up to be the r...

How to exclude < from ISAPI rewrite 2.0 redirect

I've got a redirect rule like below: RewriteRule ^/blog/(.*)$ /blog/index.aspx [I,L] This redirects everything from /blog/ to my /blog/index.aspx page, simple enough. What I need to do now is exclude < and > characters from the rule. Currently if you try and go to /blog/< it says "This page is not redirecting pr...

E_OUTOFMEMORY calling CCW com object from VC++ ISAPI in IIS.

I'm attempting to use .NET Com Callable Wrapper from ISAPI DLL (VC++) in IIS 7. COM object is created successfully, but method call return E_OUTOFMEMORY. Same code in VC++ console app runs successfully. Any ideas? The VC++ code is unmanaged. thanks,ka3751 ...

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

How do I configure IIS 7 to allow a remote database connection from within an ISAPI Web Server

I have a native Web service application (ISAPI) that I have built with Delphi 2010. At this time, it only exposes two methods. The first one, EchoString, is designed to give me feedback that the Web service is functioning properly, and it adds a couple characters to the string that I send to it from my Delphi Web service client. This alw...

Can I create a clean URL using WebBroker and Delphi ?

Hi, Can I create a clean URL for WebBroker webpages/applications ? A typical WebBroker URL normally looks like: hxxp://www.mywebsite.com/myapp.dll?name=fred or hxxp://www.mywebsite.com/myapp.dll/names/fred What I would prefer is: hxxp://www.mywebsite.com/names/fred Any idea how I can achieve this with Delphi/WebBroker ? (ISAPI/Ap...

What is difference between registering a dll to ISA server using regsvr32 and manually updating the system registry?

I have scenario where I need to add a dll to ISA server. I have two options, either to use regsvr32 or manually update the system registry. I don't have much idea about how regsvr32 will register the dll. Please let me know what should be proper/cleaner way to register the dll. TIA Anil ...

Finding out the physical path of an ISAPI dll

Hello, I'm converting a Delphi ISAPI dll to work better on IIS 7.0 and 7.5. The ISAPI used to read its configuration from the registry but I wanted to convert that to using the web.config file in the same folder. It worked fine with CGI but the ISAPI is another matter. I'm using GetModuleFileName to get the path of the module and, of c...