Ask a Question related to ASP.NET Security, Design and Development.
-
Joe Bloggs #1
Is it possible to predetermine the order of HttpModule calls or implement filter chaining in ASP.Net
Hi people,
I am wondering if it is possible to pretermine the order of the
HttpModules being executed. If not, how can one implement interceptor
filter chaining with HttpModule in ASP.Net?
Why do I want to do this?
It is because I have a HttpModule that will perform some sort of
authentication, another to perform Url rewriting. I would like the
authentication filter to execute first before the Url rewriting.
Thanks in advanced.
Joe Bloggs Guest
-
Chaining live video stream
:beer; Hello : I have a problem of server side "Stream class" and rebublish live video stream. In brief, I assume the live video stream can... -
#40499 [NEW]: filter sapi does not register any highlightning filter
From: php at henke37 dot cjb dot net Operating system: any PHP version: 6CVS-2007-02-15 (CVS) PHP Bug Type: Apache2 related... -
Chaining streams between 2 media server
Hi i'm trying to setup a stream chaining between 2 flash media servers. Basically I have an swf that streams my camera to FS Server 1. In FS... -
chaining comparisons
When I learned python I was overjoyed that I could evaluate 1 < 2 < 3 and get "true". I just realized that you can't do that in Ruby. Is there a... -
chaining of -> operator
With total disregard for any kind of safety measures Chris Laird <chris@SPAM.pocketGUARDfluff.net> leapt forth and uttered: PHP4 doesn't... -
Brock Allen #2
Re: Is it possible to predetermine the order of HttpModule calls or implement filter chaining in ASP.Net
The order tends to go by the order they're configured in the <httpModules>
section. So there are times when you want yours to fire before a built-in
one, so you have to use <remove /> in web.config sometimes then <add /> yours,
then <add /> back in the one that you had previously removed.
-Brock
DevelopMentor
[url]http://staff.develop.com/ballen[/url]
> Hi people,
>
> I am wondering if it is possible to pretermine the order of the
> HttpModules being executed. If not, how can one implement interceptor
> filter chaining with HttpModule in ASP.Net?
>
> Why do I want to do this?
>
> It is because I have a HttpModule that will perform some sort of
> authentication, another to perform Url rewriting. I would like the
> authentication filter to execute first before the Url rewriting.
>
> Thanks in advanced.
>
Brock Allen Guest
-
Dominick Baier [DevelopMentor] #3
Re: Is it possible to predetermine the order of HttpModule calls or implement filter chaining in ASP.Net
Hello Brock,
this tool is quite useful for diagnosing that stuff
[url]http://www.pluralsight.com/toolcontent/show_pipeline.zip[/url]
---------------------------------------
Dominick Baier - DevelopMentor
[url]http://www.leastprivilege.com[/url]
> The order tends to go by the order they're configured in the
> <httpModules> section. So there are times when you want yours to fire
> before a built-in one, so you have to use <remove /> in web.config
> sometimes then <add /> yours, then <add /> back in the one that you
> had previously removed.
>
> -Brock
> DevelopMentor
> [url]http://staff.develop.com/ballen[/url]>> Hi people,
>>
>> I am wondering if it is possible to pretermine the order of the
>> HttpModules being executed. If not, how can one implement interceptor
>> filter chaining with HttpModule in ASP.Net?
>>
>> Why do I want to do this?
>>
>> It is because I have a HttpModule that will perform some sort of
>> authentication, another to perform Url rewriting. I would like the
>> authentication filter to execute first before the Url rewriting.
>>
>> Thanks in advanced.
>>
Dominick Baier [DevelopMentor] Guest



Reply With Quote

