Questions tagged [isapi]

The Internet Server Application Programming Interface (ISAPI) is an N-tier API of Internet Information Services (IIS).

410 questions
0
votes
1 answer

From within an ISAPI filter, how to determine the virtual path for an IIS application?

Is there a way, inside an ISAPI Filter, to determine the virtual path for the IIS application or virtual directory? It's basically the same question as IIS Root Path vs Path of virtual directory, but rather than within an ASP.NET application, I…
Cheeso
  • 189,189
  • 101
  • 473
  • 713
0
votes
1 answer

How to manipulate a header and then continue with it in C#?

I want to replace an old ISAPI filter that ran on IIS6. This filter checks if the request is of a special kind, then manipulates the header and continues with the request. Two headers are added in the manipulating method that I need for calling…
Simon Linder
  • 3,378
  • 4
  • 32
  • 49
0
votes
1 answer

How do I accomplish interaction between HTML5 and C++ component in WINCE 7.0?

I have a Windows Embedded Compact 7.0 based development board which has a HTTPD webserver and SQL Compact DB, Objective: My task is to deploy few HTML5 pages and create C++ component for DB access. Current solution : Currently we are thinking of…
Jaiganesh
  • 1
  • 1
0
votes
3 answers

Faulting DLL (ISAPI Filter)

I wrote this ISAPI filter to rewrite the URL because we had some sites that moved locations... Basically the filter looks at the referrer, and if it's the local server, it looks at the requested URL and compared it to the full referrer. If the…
Brad
  • 1,684
  • 4
  • 20
  • 36
0
votes
0 answers

Win2008 R2 IIS 7.5 "No Default Printer Installed" error from Isapi Web Service

I have a delphi dll that is generating a error "no default printer installed" when i try to generate a report to pdf. I have create a local account and had the service impersonate the user. I have given rights to the site directory to this user. I…
J. James
  • 11
  • 3
0
votes
0 answers

IIS7 ISAPI Not loading php.ini

After installing php as ISAPI on IIS7 phpinfo function shows that no php.ini were loaded: Loaded Configuration File (none) By command line PHP is loading php.ini file successfully C:\PHP>php --ini Configuration File (php.ini) Path:…
fcaserio
  • 726
  • 1
  • 9
  • 18
0
votes
2 answers

Httpd's ScriptMap for extensionless URLs

There is a way to configure the Windows CE HTTPD server, so that it will load some defined ISAPI Extension (e.g., asp.dll) for a defined file extension (e.g., ".asp"). What is the easiest way to make it load some ISAPI Extension for extensionless…
Alex Che
  • 6,659
  • 4
  • 44
  • 53
0
votes
1 answer

Block specific User Agent in ISAPI REWRITE 3.0

I really can't find a solution, can someone pleas tell me how to block the following specific user agent exactly via isapi rewrite 3.0? I want to block: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0 Current solution,…
0
votes
1 answer

Configure ISAPI redirector: worker propreties for IIS and Liferay

we have fronted Liferay tomcat server with IIS , and we used ISAPI tomcat redirector for that ,everything works just fine. the problem is that We need to map a specific Domain name to a specific URL on Liferay: workers.properties…
Rafik BELDI
  • 4,140
  • 4
  • 24
  • 38
0
votes
1 answer

ODBC SQL Driver Locked to Single User On Windows 2008 x64

I have two different C++ ISAPI DLLs that have been setup and configured for IIS 7 to use as web applications. They are setup using different application pools that are running under different domain user accounts. The problem that I am having is…
Middas
  • 1,862
  • 1
  • 29
  • 44
0
votes
1 answer

Another regex question with ISAPI-Rewrite

it's been a couple of hours now that I'm working on this and I can't seem to figure out what the correct regex is. First of all, I'm working with IIS6 and ISAPI_Rewrite 3.0 and I'm testing my regex with the utlity that comes with it before using it…
ALOToverflow
  • 2,679
  • 5
  • 36
  • 70
0
votes
1 answer

.htacess need help for removal of multiple dots in urls

I am looking to redirect a url but its giving error, we are using ISAPI on our windows server This is the url i am trying to redirect, but its not redirecting. the problem is multiple dots. RewriteRule ^keyword1/2\.\.?$…
usef4u
  • 1
0
votes
2 answers

Delphi ISAPI: How to access Accept-Language in an Apache host?

I wrote a web service using content-negotiation with ISAPI using Delphi XE4. My code contains ARequest.GetFieldByName('Accept-Language') which outputs the correct value if I use a standalone server (Indy Bridge), but it is empty if I use an ISAPI…
Daniel Marschall
  • 3,739
  • 2
  • 28
  • 67
0
votes
1 answer

In ISAPI, is it possible to set a header to a "the empty string"?

The documentation for the ISAPI SetHeader function says that using '\0' for the value of the header will delete the header. Q1. Is it possible for an ISAPI filter to set the value of a header to the empty string? How? Q2. Does it even make…
Cheeso
  • 189,189
  • 101
  • 473
  • 713
0
votes
1 answer

My SaaS Vendor is using a .htaccess file. I'm not sure how to use it to put in browser caching

The .htaccess file looks like this below. I've never really seen an .htaccess that looks like this. Not sure what language or what code base it's using. What I would like to do is caching that looks like…
user2433689