changing content-length in OnEndOfRequest
24 Jun 2005 06:38:26 -0700
ok, i've got most of the code written for changing relative links to
absolute links on the way to the client. the one piece i'm missing is
changing the content length header property before writing the response
to the client. how do i accomplish this in OnEndOfRequest?
i don't see any header information acce ...
|
Server.Transfer in ISAPI Filter
23 Jun 2005 13:23:00 -0700
Does anyone know how I can achieve the functionality of a
server.transfer in an ISAPI filter? I have done something similiar in
the past with the following:
pCtxt->ServerSupportFunction(SF_REQ_SEND_RESPONSE_HEADER, (LPVOID) "302
Redirect", (DWORD *) szRedirect,0);
However, I don't want to make a round tr ...
|
learning ISAPI development, starting with OnSendRawData
23 Jun 2005 07:21:17 -0700
i'm writing an ISAPI filter in VC++ to get the hang of it. i've read a
few websites, and quite a few threads in this newsgroup about the
SF_NOTIFY_SEND_RAW_DATA notification, but i just wanted to make sure my
understanding was correct so far:
1) if i want to modify the content of the data being sent to the c ...
|
Printing fails in an ISAPI extension
Wed, 22 Jun 2005 09:36:14 -0700
Hi all,
I'm working on an ISAPI extension done with ATL Server that exposes a web
service for printing tasks. The service seems to work but, after have been
unused during 1 or 2 hours it fails as if there isn't any printer available
on the server.
The web service is executed as a windows service under ...
|
Isapi Filter not loading
21 Jun 2005 12:34:41 -0700
We are having a problem with an isapi filter. We are running iis 6.0.
This filter runs fine on our iis 5.0 systems. The filter is setup in
IIS as active with the green arrow. I searched the metabase and it is
showing up in there. We are not receiving any event log errors or IIS
logs errors. Any help or sugg ...
|
Debugging ISAPI on Windows2003/IIS6 (SVP1)
Tue, 21 Jun 2005 16:25:42 +0200
Hi I use "delphi 7" and try to debug an ISAPI.DLL with IIS6 and Windows
2003.
I use the configuration that descripts her:
http://www.atozed.com/IntraWeb/FAQ/IIS6.iwp
My Account have debugger rights, and all settings looked like right. If I start the application wp3p.exe starts correcly an I receive the
...
|
Setting the W3WP.exe process under Rational Purify
Mon, 20 Jun 2005 03:42:03 -0700
Does any one know the steps to put the w3wp.exe process under Rational
Purify. Any help in this regard would be highly appreciated. ...
|
|
|
ISAPI filter to redirect to a different Host
Fri, 17 Jun 2005 15:08:02 -0700
I need to write a reverse proxy that would allow requests from an internet
server redirected to an intranet server without updating the URL line. In
other words, the user type in "http://internetsite/sitename", they will see
this String displayed on the address line and the filter will need to
redirect the ...
|
ISAPI Filter - SSL Redirect with client certificate
Thu, 16 Jun 2005 18:13:04 -0700
Hi Guys !!!
Does anybody know how can I redirect my request's to another server through
SSL connection with client certificates ?
I know that must use ServerSupportFunction with HSE_REQ_GET_CERT_INFO_EX
parameter to retrieve the certificate, but how can I transfer the client
certificate to another serv ...
|
ISAPI Extensions and File Permissions
Thu, 16 Jun 2005 21:01:02 GMT
I'm working on an ISAPI Extension that is writing files to disk and then
sends the content of the file to the client. I'm writing the file to disk as
a caching mechanism. On subsequent requests, the ISAPI Extension can just
send the file to the client without having to generate it again.
On IIS5, the anon ...
|