Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

Help needed with ISAPI filter on IIS 6.0

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Next:  Event Viewer message  
Author Message
amoltavkar

External


Since: Jul 13, 2004
Posts: 1



(Msg. 1) Posted: Tue Jul 13, 2004 11:42 am
Post subject: Help needed with ISAPI filter on IIS 6.0
Archived from groups: microsoft>public>inetserver>iis (more info?)

Hi,

I have an ISAPI filter that works fine with IIS 5.0. However when I
try to employ the same filter on IIS 6.0 following are the
observations:
1. Filter loads up correctly
2. Whenever I try to access pages on this web server, the pages are
NOT loaded in the browser and consequently the connection times out.

I am running IIS 6.0 in IIS 5.0 isolation mode. What changes should I
make in the filter for this to work? I guess its something to do with
critical sections (not sure).

Please help.
Regards,
Amol

 >> Stay informed about: Help needed with ISAPI filter on IIS 6.0 
Back to top
Login to vote
ganesh

External


Since: Jul 08, 2004
Posts: 23



(Msg. 2) Posted: Tue Jul 13, 2004 3:04 pm
Post subject: Re: Help needed with ISAPI filter on IIS 6.0 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Hello Amol,

Take a look this KB article:
311852 Information about ISAPI filters with SF_NOTIFY_READ_RAW_DATA in IIS
6.0
<a style='text-decoration: underline;' href="http://support.microsoft.com/?id=311852" target="_blank">http://support.microsoft.com/?id=311852</a>

Also check the event logs and httperr logs.

You could use IISSTATE to get a memory dump to analyze it further.

HTH,
--
Ganesh Anekar
Microsoft Developer Support
Internet Information Server
*********************************************************************
  >>Please do not send email directly to this alias. This is an online
account name for newsgroup participation only.<<

This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use.

© 2003 Microsoft Corporation. All rights reserved.
*********************************************************************
"Amol" <amoltavkar.DeleteThis@gmail.com> wrote in message
news:9960f0cd.0407130742.40468792@posting.google.com...
 > Hi,
 >
 > I have an ISAPI filter that works fine with IIS 5.0. However when I
 > try to employ the same filter on IIS 6.0 following are the
 > observations:
 > 1. Filter loads up correctly
 > 2. Whenever I try to access pages on this web server, the pages are
 > NOT loaded in the browser and consequently the connection times out.
 >
 > I am running IIS 6.0 in IIS 5.0 isolation mode. What changes should I
 > make in the filter for this to work? I guess its something to do with
 > critical sections (not sure).
 >
 > Please help.
 > Regards,
 > Amol<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: Help needed with ISAPI filter on IIS 6.0 
Back to top
Login to vote
someone9

External


Since: Aug 25, 2003
Posts: 2419



(Msg. 3) Posted: Tue Jul 13, 2004 5:28 pm
Post subject: Re: Help needed with ISAPI filter on IIS 6.0 [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

311852 has been yanked. It was published before IIS6 RTM and contains
technically inaccurate information relative to the RTM product. Its
replacement is being written right now.

You will need to debug why the ISAPI Filter is not working.

First make sure the ISAPI Filter DLL is even loaded by IIS. Make sure to
configure the ISAPI Filter via the UI and then make a request to the
containing website. If this succeeds, your filter should be loaded in
inetinfo.exe in IIS5 Compatibility Mode. If this fails, either with a hang
or with a 503 Service Unavailable, then check the event log for more info.

After you are certain that the ISAPI Filter DLL is loaded by IIS and
running, then you'll need to set a breakpoint on the HttpFilterProc function
and walk through it. Either that, or describe what your filter is supposed
to do (and how it is implemented). Since ISAPI Filter implementation
completely changed between IIS5 and IIS6, you may either be relying on
incorrect behavior, or it may be an IIS6 bug.

--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Ganesh Anekar [MSFT]" <Ganesh DeleteThis @online.microsoft.com> wrote in message
news:%23pL8rwQaEHA.3596@tk2msftngp13.phx.gbl...
Hello Amol,

Take a look this KB article:
311852 Information about ISAPI filters with SF_NOTIFY_READ_RAW_DATA in IIS
6.0
<a style='text-decoration: underline;' href="http://support.microsoft.com/?id=311852" target="_blank">http://support.microsoft.com/?id=311852</a>

Also check the event logs and httperr logs.

You could use IISSTATE to get a memory dump to analyze it further.

HTH,
--
Ganesh Anekar
Microsoft Developer Support
Internet Information Server
*********************************************************************
  >>Please do not send email directly to this alias. This is an online
account name for newsgroup participation only.<<

This posting is provided "AS IS" with no warranties, and confers no rights.
You assume all risk for your use.

© 2003 Microsoft Corporation. All rights reserved.
*********************************************************************
"Amol" <amoltavkar DeleteThis @gmail.com> wrote in message
news:9960f0cd.0407130742.40468792@posting.google.com...
 > Hi,
 >
 > I have an ISAPI filter that works fine with IIS 5.0. However when I
 > try to employ the same filter on IIS 6.0 following are the
 > observations:
 > 1. Filter loads up correctly
 > 2. Whenever I try to access pages on this web server, the pages are
 > NOT loaded in the browser and consequently the connection times out.
 >
 > I am running IIS 6.0 in IIS 5.0 isolation mode. What changes should I
 > make in the filter for this to work? I guess its something to do with
 > critical sections (not sure).
 >
 > Please help.
 > Regards,
 > Amol<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: Help needed with ISAPI filter on IIS 6.0 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
ISAPI filter - Hi! We are doing some brainstorming to find new ways to develop out product in a couple of different areas. One way to go includes writing an ISAPI filter that "runs" before the ASP code gets parsed. The reason for doing this is that we want ...

Missing: XSL ISAPI Filter - What happened to the XSL ISAPI Filter? I've found a bunch of articles referencing it, even a MS bug page, but all of the links come up dead. Here are a few of the dead links:..

How to get session ID in ISAPI Filter - Hi, all At first, I must thank for David Wang's and Mark Weaver's answers. I have known that the ASP session object can't be used in ISAPI. There is other problem, please help me. I want to get a session ID in ISAPI filter, but how to do it? If it is..

how to get session within ISAPI Filter ? - Hi, I want to get the value of session("LoginId") within my ISAPI Filter,How to do it? Thanks! Best Reguards!

ISAPI Filter Problem in IIS 6.0 - Hi, I have an ISAPI Filter DLL which worked just fine on IIS 5.0, and fails to work on IIS 6.0 (unless I use the 5.0 isolation mode). From all the documentation I've seen, this should happen only when registering for the READ_RAW_DATA event, yet my DLL..
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]