Is it possible to predetermine the order of HttpModule calls or implement filter chaining in ASP.Net

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. #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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139