Welcome to HostingForumz.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

IIS 6 and SEND_RAW_DATA Filters

 
   Web Hosting Problem Solving Community! (Home) -> IIS RSS
Next:  Point to third party hosting service  
Author Message
anonymous800

External


Since: Dec 30, 2003
Posts: 3



(Msg. 1) Posted: Tue Dec 30, 2003 10:00 pm
Post subject: IIS 6 and SEND_RAW_DATA Filters
Archived from groups: microsoft>public>inetserver>iis (more info?)

Hi,

I am wondering what the proper approach is to implement
ISAPI Filter SF_NOTIFY_SEND_RAW_DATA 'like' functionality
in IIS 6.

I have a filter, which is well tested and works fine in
IIS 5, that won't load in IIS 6 under Worker Process
Isolation Mode. This is because it makes use of both
RAW_DATA notifications (READ and SEND)...

The IIS 6 docs say that the READ_RAW_DATA functionality
can be accomplished by the HSE_REQ_EXEC_URL support
function... But what about the SEND_RAW_DATA
functionality? What is the best approach to gain access
to the outgoing data for any given request?

Thanks,
Mike.

 >> Stay informed about: IIS 6 and SEND_RAW_DATA Filters 
Back to top
Login to vote
someone9

External


Since: Aug 25, 2003
Posts: 2419



(Msg. 2) Posted: Wed Dec 31, 2003 1:37 am
Post subject: Re: IIS 6 and SEND_RAW_DATA Filters [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In IIS6, it's still SEND_RAW_DATA to access the response data.

--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Michael Corcoran" <anonymous RemoveThis @discussions.microsoft.com> wrote in message
news:044101c3cf4a$33e856e0$a601280a@phx.gbl...

Hi,

I am wondering what the proper approach is to implement
ISAPI Filter SF_NOTIFY_SEND_RAW_DATA 'like' functionality
in IIS 6.

I have a filter, which is well tested and works fine in
IIS 5, that won't load in IIS 6 under Worker Process
Isolation Mode. This is because it makes use of both
RAW_DATA notifications (READ and SEND)...

The IIS 6 docs say that the READ_RAW_DATA functionality
can be accomplished by the HSE_REQ_EXEC_URL support
function... But what about the SEND_RAW_DATA
functionality? What is the best approach to gain access
to the outgoing data for any given request?

Thanks,
Mike.

 >> Stay informed about: IIS 6 and SEND_RAW_DATA Filters 
Back to top
Login to vote
anonymous800

External


Since: Dec 30, 2003
Posts: 3



(Msg. 3) Posted: Wed Dec 31, 2003 12:50 pm
Post subject: Re: IIS 6 and SEND_RAW_DATA Filters [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

So, does that mean that the following documentation is
incorrect when it says that "ISAPI filters that register
for SF_READ_RAW_DATA or SF_SEND_RAW_DATA notifications are
not supported in worker process isolation mode"?

<a style='text-decoration: underline;' href="http://msdn.microsoft.com/library/en-" target="_blank">http://msdn.microsoft.com/library/en-</a>
us/iissdk/iis/changes_in_isapi_filter_features.asp?
frame=true

Thanks,
Mike.

 >-----Original Message-----
 >In IIS6, it's still SEND_RAW_DATA to access the response
data.
 >
 >--
 >//David
 >IIS
 >This posting is provided "AS IS" with no warranties, and
confers no rights.
 >//
 >"Michael Corcoran" <anonymous.TakeThisOut@discussions.microsoft.com>
wrote in message
 >news:044101c3cf4a$33e856e0$a601280a@phx.gbl...
 >
 >Hi,
 >
 >I am wondering what the proper approach is to implement
 >ISAPI Filter SF_NOTIFY_SEND_RAW_DATA 'like' functionality
 >in IIS 6.
 >
 >I have a filter, which is well tested and works fine in
 >IIS 5, that won't load in IIS 6 under Worker Process
 >Isolation Mode. This is because it makes use of both
 >RAW_DATA notifications (READ and SEND)...
 >
 >The IIS 6 docs say that the READ_RAW_DATA functionality
 >can be accomplished by the HSE_REQ_EXEC_URL support
 >function... But what about the SEND_RAW_DATA
 >functionality? What is the best approach to gain access
 >to the outgoing data for any given request?
 >
 >Thanks,
 >Mike.
 >
 >
 >.
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: IIS 6 and SEND_RAW_DATA Filters 
Back to top
Login to vote
someone9

External


Since: Aug 25, 2003
Posts: 2419



(Msg. 4) Posted: Wed Dec 31, 2003 6:50 pm
Post subject: Re: IIS 6 and SEND_RAW_DATA Filters [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Yes, that sentence is incorrect. I will have it fixed. Hmm, it doesn't
even have the right #define variable name at all.

Only SF_NOTIFY_READ_RAW_DATA is incompatible with worker process isolation
mode.

--
//David
IIS
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Michael Corcoran" <anonymous RemoveThis @discussions.microsoft.com> wrote in message
news:00e401c3cfc6$9db86ed0$a301280a@phx.gbl...

So, does that mean that the following documentation is
incorrect when it says that "ISAPI filters that register
for SF_READ_RAW_DATA or SF_SEND_RAW_DATA notifications are
not supported in worker process isolation mode"?

<a style='text-decoration: underline;' href="http://msdn.microsoft.com/library/en-" target="_blank">http://msdn.microsoft.com/library/en-</a>
us/iissdk/iis/changes_in_isapi_filter_features.asp?
frame=true

Thanks,
Mike.

 >-----Original Message-----
 >In IIS6, it's still SEND_RAW_DATA to access the response
data.
 >
 >--
 >//David
 >IIS
 >This posting is provided "AS IS" with no warranties, and
confers no rights.
 >//
 >"Michael Corcoran" <anonymous RemoveThis @discussions.microsoft.com>
wrote in message
 >news:044101c3cf4a$33e856e0$a601280a@phx.gbl...
 >
 >Hi,
 >
 >I am wondering what the proper approach is to implement
 >ISAPI Filter SF_NOTIFY_SEND_RAW_DATA 'like' functionality
 >in IIS 6.
 >
 >I have a filter, which is well tested and works fine in
 >IIS 5, that won't load in IIS 6 under Worker Process
 >Isolation Mode. This is because it makes use of both
 >RAW_DATA notifications (READ and SEND)...
 >
 >The IIS 6 docs say that the READ_RAW_DATA functionality
 >can be accomplished by the HSE_REQ_EXEC_URL support
 >function... But what about the SEND_RAW_DATA
 >functionality? What is the best approach to gain access
 >to the outgoing data for any given request?
 >
 >Thanks,
 >Mike.
 >
 >
 >.
 ><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: IIS 6 and SEND_RAW_DATA Filters 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
IIS 5.0 Isapi Filters - I added a Webtrends cookie filter (iiscookieserver.dll) to an IIS web site. It successfully added, but when I try to access the web via FrontPage (2000/2002) this new isapi filter prevents web access. When I remove the filter, access is restored. Any....

Raw data filters - In one of the technical white papers for Windows Server 2003, it is stated that "Some applications may not be compatible with IIS 6.0 worker process isolation mode such as applications written as read raw data filters..." Can someone expla...

IIS6 filters URLs? - Since upgrading from IIS5 to IIS6, any websites which contain a /bin directory no longer function, any file in the /bin directory cannot be retrieved, a 404 is returned. I guess this is IIS6 blocking requests to download files in a directory with that..

use of default isapi filters - We are running IIS 5. We are not running asp.net. Can someone point me to any documentation on what the default isapi filters do, which ones can be removed and which ones should not be removed for security issues etc? We have a client who has asked u...

problem with ISAPI Filter -Web site level filters - Hello, I have a ISAPI filter which get the headers from all the web sites , which i configured on my IIS. When i installed on IIS 6.0 the Priority of the ISAPI filter in Web-site properites -ISAPI filter tab is UNknown. But in my application i have..
   Web Hosting Problem Solving Community! (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 ]