Sharing data between DLLs
Mon, 18 Jul 2005 18:02:04 -0400
Hello,
I followed the instructions from the following link with no success:
http://support.microsoft.com/kb/q125677
What I'd like to do is:
I have two DLLs that need to share a variable. The first DLL sets the
variable and the second DLL clears it.
In the first DLL's source code, I added the following ...
|
Certificate "insertion" via ISAPI
Mon, 18 Jul 2005 15:25:12 -0400
Ok, this may be silly but is it possible to insert a client certificate into
a request. I know I can read certificate data but I wanted to insert the
certificate into the request for purposes of authentication so that an IIS
site that was configured for certificate mapping could be manipulated
programatica ...
|
Sharing a variable between DLLs
Fri, 15 Jul 2005 14:54:38 -0400
Hello,
I have two DLLs that need to share a variable. The first DLL sets the
variable and the second DLL clears it.
In the first DLL's source code, I added the following code:
#pragma data_seg(".shared")
BOOL sharedVar = FALSE;
#pragma data_seg()
..
..
sharedVar = TRUE:
..
..
Also, I added to ...
|
webdav and isapi
9 Jul 2005 13:01:57 -0700
Is it possible to intercept a webdav call to the webdav root and remap
it to a user's home directory, i.e., to go to something like
root/users/usersA/UserName? I was hoping either an isapi filter or
extension could handle this but I'm a bit clueless about how to go
about implementing it. I would very much ap ...
|
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.
...
|