-
Posted to
PHP Community
by
cheeso
on
12-01-2008, 12:43 AM
IIRF is pretty fast. It is not milliseconds. It is only doing memory moves and copies - much faster than milliseconds per request. Supports hundreds to thousands of concurrent requests.
-
Posted to
IIS7 - Configuration & Scripting
by
cheeso
on
12-01-2008, 12:19 AM
I don't know about this module in particular.
But there are other rewrite filters available that work. For example, IIRF:
http://www.codeplex.com/IIRF/Wiki/View.aspx?title=Joomla&referringTitle=Home
-
Posted to
IIS7 - URL Rewrite Module
by
cheeso
on
11-30-2008, 10:58 PM
This article: http://support.microsoft.com/kb/298408 describes a behavior in IIS where IIS response with a 301 "Moved Permanently" when a URL request is received which maps to a directory, but the URL request lacks a trailing slash. Is it possible to disable the "courtesy 301 redirect" for URL requests that lack a ...
-
Posted to
IIS7 - General
by
cheeso
on
11-30-2008, 10:54 PM
Sounds to me like web.config is being found, but is not valid XML.
Do you have such a file in that directory? Is it valid XML?
I Think if you don't have a file, things would be fine. Also if you have a file, and it is valid, things would be fine. It is only if you have a file and it is not valid that you would ...
-
Posted to
Extensibility
by
cheeso
on
04-15-2008, 12:50 PM
Thanks for the speedy reply, Anil.
Is it worth updating the doc to clarify that point?
-
Posted to
Extensibility
by
cheeso
on
04-15-2008, 12:45 PM
Rico,
This one has been answered before.
You can use the IIS ADSI and WMI providers to help you configuring ISAPI filters programmatically. The following link contains an example using ADSI: http://support.microsoft.com/kb/302988/
also see http://msdn2.microsoft.com/en-us/library/ms525344.aspx
-
Posted to
Extensibility
by
cheeso
on
04-15-2008, 12:43 PM
Some existing Url Rewriting filters may allow you to code this in rules, rather than depending on writing your own filter.
-
Posted to
Extensibility
by
cheeso
on
04-15-2008, 12:42 PM
Regular Expressions are black magic!
-
Posted to
Extensibility
by
cheeso
on
04-15-2008, 12:40 PM
If it is just one specific URL, and an ASPX file, then I would recommend using an HttpModule, coded in C#.
It's simple, easy to use, accessible for C# developers. An Isapi extension is unmanaged code, written in C, which maybe is accessible to you, but, it is messier than the HttpModule mechanism. And, if you are only doing a single ...
-
Posted to
Extensibility
by
cheeso
on
04-15-2008, 12:33 PM
I read the doc (http://msdn2.microsoft.com/en-us/library/ms525099(VS.85).aspx), but there's something I'm not clear on.
When i call SetHeader(), does the lpszValue get copied as a pointer? or does the content of lpszValue get copied to a buffer that is maintained by IIS?
In my filter, I allocate a buffer during the request, ...