views:

21

answers:

0

I'm looking to port over an Apache module to IIS 6.0 that does some custom encryption on data that is being sent to the client. A TechNet document that deals with configuring IIS 6.0 suggests that this can be done with ISAPI:

For example, a filter could be notified when a Read or Write event occurs and then encrypt the raw data to be returned to the client.

But most of the examples I've been able to find only touch on really basic things like redirecting URLs, and logging.

So are there any ISAPI resources and/or books that would demonstrate how to do some more advanced content filtering and processing? I would prefer those that deal with the ISAPI interface directly rather than through the MFC classes, since those are no longer supported in VS2008, but if there are any that are just MFC then they might also be useful as a reference.

Edit: I was actually able to figure it all out by digging my way through the docs, but I would still be interested in any more advanced resources on ISAPI filters.

I'll make this a Community Wiki.

I did find David Wang's blog that has some useful information:

http://blogs.msdn.com/david.wang/default.aspx