How do I get my DLL to run after clicking on "OK" in a confirm box?
Wed, 24 Aug 2005 09:24:25 -0400
Hello,
Is there a way to have my DLL execute, after the user has clicked OK, in the
confirm box?
I'm using javascript and I can detect what the user had clicked in the
confirm box(OK or Cancel) but I need to execute a DLL on the OK selection.
Thanks
...
|
Detecting Application Path
Sun, 21 Aug 2005 00:28:18 -0700
ASP.NET provides the ability to get an application specific path that points
at a base url for the current application.
I'm trying how to do this with my custom ISAPI extension and can't seem to
figure out a way to get this path. IIS provides a metabase path, which
allows mapping a physical path, but how ...
|
IIS 6 slow to start worker process
Fri, 19 Aug 2005 19:03:33 GMT
I'm writing an ISAPI extension for IIS 6. For development purposes, I'm
setting the "Recycle worker process (number of requests)" option to 1, so
the extension is unloaded after each request and I can easily recompile
without the file being in use.
What I'm running into is IIS taken a long time (10+ sec.) ...
|
mod_dosevasive alternatives in IIS
Fri, 19 Aug 2005 06:28:09 -0700
Hi all,
I've been looking for some ISAPI filter or either product for IIS 6.0 that
does the same job that mod_dosevasive does in Apache servers.
Basically what mod_dosevasive does is create an internal dynamic hash table
of IP Addresses and URIs, and denying any single IP address from any of the
follow ...
|
adding new http header
Wed, 17 Aug 2005 06:29:03 -0700
Hi ,
Could anyone tell me how to add HTTP headers to the request in the
OnPreProcHeaders() procedure?
I tried adding a header "UserName: vinoth" using AddResponseHeaders method .
but while reading the headers in C# using Response.Headers collection the
header UserName is not listed.
Is the way what ...
|
Server.MapPath()
Mon, 15 Aug 2005 16:28:23 -0400
I'm only a week old in the ISAPI world, so forgive me is this is a newby
question. How do I determine what physical path that I need to access to
retrieve a file (I created an extension dll that is associated with .ctm
files) ?
i.e. what is my replacement for Server.MapPath() in ISAPI C++?
Thanks,
-K
...
|
More than one isapi filter, each using pFC->pFilterContext
15 Aug 2005 11:17:29 -0700
Is pFilterContext associated with the TCP socket connection and thus
the context data structure is associated with the request/response pair
across multiple isapi filters?
Or, is pFilterContext unique for each ISAPI filter, as well as unique
for the connection request/response pair? I need to track context
...
|
|
|
Could I add new a header for client request (Using IHttpModule C#)
Mon, 15 Aug 2005 16:24:16 +0800
hi, all
When I use ISAPI(VC++), I could add a http header for client request in
HTTP_FILTER_AUTH_COMPLETE_INFO.(After authentication and before send to my
application)
Now, I am trying to use IHttpModule in C#. But in HttpApplication Class,
only
Response can add header, Request only can read.
Is there a ...
|
WriteClient() on IIS 6.0 (SP1)
Sun, 14 Aug 2005 18:18:32 +0200
it looks like WriteClient() on IIS6.0 (SP1) always returns true, even if
the client has disconnected meanwhile. in IIS5 there wasn't such a
behaviour, WriteClient() returned false, everytime there was no data
connection available.
before SP1 a workaround exists using the "EnableCopySend" registry key
fo ...
|
400 bad request error when query string included on custom file type
Fri, 12 Aug 2005 11:40:58 -0400
I have created an ISAPI extension and configured IIS to call my dll whenever
it handles files of type
..ctm. Whenever I include a query string in the URL on this file type, I get
a "HTTP 400 Bad Request Error" back from
IIS. I created the ISAPI extension with the wizard in VC++. Does anyone
know why this o ...
|