Re: RequestFilter running after serving assets

2012-04-04 Thread Thiago H. de Paula Figueiredo
On Wed, 04 Apr 2012 21:08:10 -0300, Manuel Sugawara wrote: Yeah, I guess that will work. So, let me rephrase, When is appropriate to use a dispatcher and when a filter? Dispatchers are meant to provide a response to a request. Request filters are better suited for applying logic which is

Re: RequestFilter running after serving assets

2012-04-04 Thread Manuel Sugawara
On Wed, Apr 4, 2012 at 6:48 PM, Thiago H. de Paula Figueiredo < thiag...@gmail.com> wrote: > On Wed, 04 Apr 2012 19:47:48 -0300, Manuel Sugawara < > manuel.sugaw...@gmail.com> wrote: > > Hi all, >> > > Hi! > > > I have a RequestFilter that serves some content from the database and I >> would lik

Re: RequestFilter running after serving assets

2012-04-04 Thread Thiago H. de Paula Figueiredo
On Wed, 04 Apr 2012 19:47:48 -0300, Manuel Sugawara wrote: Hi all, Hi! I have a RequestFilter that serves some content from the database and I would like that it run after the assets dispatcher in order to avoid the creation of the service that access the database. Is this possible?. W

RequestFilter running after serving assets

2012-04-04 Thread Manuel Sugawara
Hi all, I have a RequestFilter that serves some content from the database and I would like that it run after the assets dispatcher in order to avoid the creation of the service that access the database. Is this possible?. How are dispatchers and filters related?. Any pointers to the docs would al