SSO using ISAPI
Tue, 5 Jul 2005 17:36:09 -0700
I am building a SSO framework included in enterprise solutions for schools,
our clients. Sorry about making this into a lengthy post. I chose to describe
entire solution here since this solution requires small bits and pieces
working together and fixing one breaks others (sound familiar?). Thank you
for yo ...
|
Developing a custom IIS properties tab
5 Jul 2005 14:12:32 -0700
Hi,
I've written an ISAPI filter that I want to be able to configure
directly from the website propeties in the IIS MMC snap in.
Please could someone point me in the direction of some info about how
to develop a custom properties tab for "per website" and the "all
websites" properties dialogs from the IIS ...
|
Returning a 403 from a HTTP_FILTER_PREPROC_HEADERS filter
Fri, 01 Jul 2005 06:56:26 -0700
Hello everyone,
I'm trying to solve a problem of referer spam: People will fake
requests to the web server using online casino, "drug" retailers and
other questionable web sites as referer. Not only does that messes up
my web stats but I also happen to run a blog software that keeps track
of these referer a ...
|
IIS 6.0 ISAPI Filter Problem
Thu, 30 Jun 2005 14:10:47 -0400
I've written an ISAPI filter that traps the SF_NOTIFY_AUTH_COMPLETE event
and inserts custom HTTP headers using the AddHeader() function in the
HTTP_FILTER_AUTH_COMPLETE_INFO structure.
This filter works perfectly fine on a Windows XP Pro SP2 development
platform. However, when I place the ISAPI filter o ...
|
Request headers added by extension not visible to filter
Wed, 29 Jun 2005 15:59:02 -0700
I have a combination ISAPI extension/filter DLL (for IIS6) that looks at HTTP
header in the request and response. The extension portion (needed to access
the request body for a POST) grabs the info it needs and calls
ServerSupportFunction to do an HSE_REQ_EXEC_URL.
The filter portion captures response he ...
|
How to detect refresh(F5)?
Wed, 29 Jun 2005 16:14:25 -0400
Hello,
I have IIS ver 6.0 and I'm running a dll as an ISAPI extension. How can I
have my dll detect, that the user has "clicked" on the refresh(F5) button?
Is it a parameter in the Extension Control Block(ECB)?
Thanks.
...
|
HOW TO CONFIGURE WITH IIS6.0
Tue, 28 Jun 2005 06:51:10 -0500
How do I configure W3wpm.exe with Purify on Windows 2003 Server.
W3WPM.exe is present in /WINDOWS/system32/inserv/
Thanks ...
|
|
|
"Host:" doesn't exist in relative request header?
27 Jun 2005 10:16:07 -0700
if i'm reading the HTTP 1.1 RFC correctly, there are only two ways that
the URI can be specified:
1) either it's absolute, in which case you can expect the host to be
specified in the actual request uri
2) or it's just the resource path, in which case you can expect that
the request uri will hold only the a ...
|
ready to debug!
24 Jun 2005 14:17:56 -0700
ok, i have coded my first isapi filter, and added it to my localhost
website for testing. at first of course it was unresponsive, because of
fatal runtime errors, but i got those worked out. however now i need to
do some more granular tweaking, that requires some actual debugging.
i would rather not implemen ...
|
how to change content-length in OnEndOfRequest?
24 Jun 2005 07:01:22 -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 ...
|