|
Related Topics:
| ISAPI Filter Priority - I have added three entries into IIS ISAPI filter list. Sometimes the priority is low and sometime it is Unknown. Any ideas how I can make this more standard. Low is what I want... How is this value set, A value somewhere ? TIA Jay
Install ISAPI Filter using script - Hello everyone, I am looking for a script that I can use to install ISAPI filter Is there any sample code? I found a sample vbScript on MSDN, but for some reason after I run the script I do not see the filter being Can you..
DLLHOST.EXE and ISAPI - Hello, All! I've been using IIS5 and the ISAPI extension for Visual FoxPro and a VFP COM server without any problems for almost three years. After I installed SP4 for Windows 2000, the fails to load the I need to..
Problems with 64-bit ISAPI Extensions - I posted this to isapi-dev too, but since I could have a glitch on IIS which is causing my problems, I will post this here too. Sorry for I have big problem getting 64-bit ISAPI to work on Windows 2003..
Can't HTTP POST to ISAPI DLL! - I have an ISAPI extension written in C++, running under IIS 6. I can use the GET method to invoke it just fine, but the POST method fails. I've tried playing with every that I could find, but the server keeps returning error 501. If I telnet..
|
|
|
Next: IIS: active component cant create object.....
|
| Author |
Message |
External

Since: Sep 11, 2003 Posts: 2
|
(Msg. 1) Posted: Thu Sep 11, 2003 9:45 am
Post subject: ISAPI filter problem Archived from groups: microsoft>public>de>inetserver>iis, others (more info?)
|
|
|
Hi everyone,
I am trying to create ISAPI filter that will intercept incoming header from
the client and modify it.
When I create ISAPI filter using VC++ wizard
(wizard with options: use MFC, create filter only, no server extension
objects, notification priority low, filter connection type secured and non
secured and notification for incoming raw data and headers... and nothing
else)
I build the DLL without any modifications to the code, add it the website,
restart server, but the filter is still down (red arrow pointing down)
This is only the case when I use notification for incoming raw data (
SF_NOTIFY_READ_RAW_DATA) ... if I use SF_NOTIFY_URL_MAP filter is up and
running.
I know that sometimes filters stay down until they are first used so I
checked the IIS log (with IISDebug tools) and it says that there was an
Win32Error="87"
I tried on two IIS.
So what is the problem? configuration? bad wizard or what?
Thanks,
Bob >> Stay informed about: ISAPI filter problem |
|
| Back to top |
|
 |  |
External

Since: Aug 25, 2003 Posts: 2419
|
(Msg. 2) Posted: Fri Sep 12, 2003 2:18 am
Post subject: Re: ISAPI filter problem [Login to view extended thread Info.] Archived from groups: microsoft>public>inetserver>iis (more info?)
|
|
|
What you want to do only requires SF_NOTIFY_PREPROC_HEADERS, where you can
easily add/remove/modify headers from the client. You do NOT need
SF_NOTIFY_READ_RAW_DATA at all, so don't use it.
I'm betting your server is IIS6 and it's a clean OS install. If so, then
you cannot register for SF_NOTIFY_READ_RAW_DATA by default... which is no
problem, because 99.9% of filter writers do not need that event (your
situtation certainly does not).
When you're ready to write your custom SSL encryption or compression
algorithm, then we may talk about it.
--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Bob" <bob.TakeThisOut@no-spam.com> wrote in message
news:5SU7b.61446$ef4.480088@news.chello.at...
Hi everyone,
I am trying to create ISAPI filter that will intercept incoming header from
the client and modify it.
When I create ISAPI filter using VC++ wizard
(wizard with options: use MFC, create filter only, no server extension
objects, notification priority low, filter connection type secured and non
secured and notification for incoming raw data and headers... and nothing
else)
I build the DLL without any modifications to the code, add it the website,
restart server, but the filter is still down (red arrow pointing down)
This is only the case when I use notification for incoming raw data (
SF_NOTIFY_READ_RAW_DATA) ... if I use SF_NOTIFY_URL_MAP filter is up and
running.
I know that sometimes filters stay down until they are first used so I
checked the IIS log (with IISDebug tools) and it says that there was an
Win32Error="87"
I tried on two IIS.
So what is the problem? configuration? bad wizard or what?
Thanks,
Bob >> Stay informed about: ISAPI filter problem |
|
| Back to top |
|
 |  |
External

Since: Sep 05, 2003 Posts: 173
|
(Msg. 3) Posted: Fri Sep 12, 2003 3:38 am
Post subject: RE: ISAPI filter problem [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
It would probably be more helpful if you posted your question in our ISAPI
newsgroup:
microsoft.public.platformsdk.internet.server.isapi-dev
Thank you for choosing Microsoft
Miriam Green
Microsoft Developer Support
This posting is provided “AS IS” with no warranties, and confers no rights.
You assume all risk for your use. © 2002 Microsoft Corporation. All rights
reserved.
“Microsoft Security Announcement: Have you installed the patch for
Microsoft Security Bulletin MS03-026? If not Microsoft strongly advises
you to review the information at the following link regarding Microsoft
Security Bulletin MS03-026
http://www.microsoft.com/security/security_bulletins/ms03-026.asp and/or to
visit Windows Update at http://windowsupdate.microsoft.com to install the
patch. Running the SCAN program from the Windows Update site will help to
insure you are current with all security patches, not just MS03-026.” >> Stay informed about: ISAPI filter problem |
|
| Back to top |
|
 |  |
External

Since: Sep 11, 2003 Posts: 2
|
(Msg. 4) Posted: Fri Sep 12, 2003 5:11 pm
Post subject: Re: ISAPI filter problem [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
This helped! Thank you very much!
Bob
"David Wang [Msft]" <someone.TakeThisOut@online.microsoft.com> wrote in message
news:uq9e%23dPeDHA.2428@TK2MSFTNGP09.phx.gbl...
> What you want to do only requires SF_NOTIFY_PREPROC_HEADERS, where you can
> easily add/remove/modify headers from the client. You do NOT need
> SF_NOTIFY_READ_RAW_DATA at all, so don't use it.
>
> I'm betting your server is IIS6 and it's a clean OS install. If so, then
> you cannot register for SF_NOTIFY_READ_RAW_DATA by default... which is no
> problem, because 99.9% of filter writers do not need that event (your
> situtation certainly does not).
>
> When you're ready to write your custom SSL encryption or compression
> algorithm, then we may talk about it.
>
> --
> //David
> IIS
> This posting is provided "AS IS" with no warranties, and confers no
rights.
> //
> "Bob" <bob.TakeThisOut@no-spam.com> wrote in message
> news:5SU7b.61446$ef4.480088@news.chello.at...
> Hi everyone,
>
> I am trying to create ISAPI filter that will intercept incoming header
from
> the client and modify it.
>
> When I create ISAPI filter using VC++ wizard
> (wizard with options: use MFC, create filter only, no server extension
> objects, notification priority low, filter connection type secured and non
> secured and notification for incoming raw data and headers... and nothing
> else)
>
> I build the DLL without any modifications to the code, add it the website,
> restart server, but the filter is still down (red arrow pointing down)
>
> This is only the case when I use notification for incoming raw data (
> SF_NOTIFY_READ_RAW_DATA) ... if I use SF_NOTIFY_URL_MAP filter is up and
> running.
>
> I know that sometimes filters stay down until they are first used so I
> checked the IIS log (with IISDebug tools) and it says that there was an
> Win32Error="87"
>
> I tried on two IIS.
> So what is the problem? configuration? bad wizard or what?
>
> Thanks,
> Bob
>
>
><!-- ~MESSAGE_AFTER~ --> >> Stay informed about: ISAPI filter problem |
|
| Back to top |
|
 |  |
External

Since: Sep 12, 2003 Posts: 2
|
(Msg. 5) Posted: Fri Sep 12, 2003 7:39 pm
Post subject: Re: ISAPI filter problem [Login to view extended thread Info.] Archived from groups: microsoft>public>de>inetserver>iis, others (more info?)
|
|
|
1) This is a german language forum
2) What platform is this (IIS6 or IIS5)?
I recommend to run this under the debugger and check what exactly is
failing.
--
Mit freundlichen Grüßen / Kind Regards,
Andreas Klein
Microsoft Services
Die Inhalte der in dieser Newsgroup eingestellten Nachrichten stammen von
Dritten. Microsoft kann daher für die Richtigkeit und Vollständigkeit der
Inhalte keine Haftung übernehmen.
This posting is provided "AS IS" with no warranties, and confers no rights. >> Stay informed about: ISAPI filter problem |
|
| Back to top |
|
 |  |
|