In your module, add a contribution method:

public void 
contributeHttpServletRequestHandler(OrderedConfiguration<HttpServletRequestFilter>
configuration)
{
  configuration.add("MyFilter", new MyFilter(...));
}

There are other options to the add() method to control the order of
your filter relative to the other filters in the pipeline.

Look at TapestryModule for more examples of contributions.

On Wed, Mar 26, 2008 at 9:31 AM, THIEBAUD Patrice <[EMAIL PROTECTED]> wrote:
> The Request Processing documentation says that the
>  HttpServletRequestHandler pipeline can be extended by contributing a
>  HttpServletRequestFilter into the HttpServletRequestHandler service's
>  configuration.
>
>  I guess that one has to provide an ordered list of
>  HttpServletRequestFilter somehow, but I didn't find a point of entry.
>
>  How can it be done exactly ?
>
>  Thanks in advance.
>
>



-- 
Howard M. Lewis Ship

Creator Apache Tapestry and Apache HiveMind

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to