Hi List, I have implemented a LoginDispatcher like explained in the wiki (http://wiki.apache.org/tapestry/Tapestry5HowToCreateADispatcher). Then I contributed it to the MasterDispatcher's configuration with the following code: configuration.add("LoginDispatcher", loginDispatcher, "before:PageRender");
So far so good. Everything works up to this point. If I got it right I would end up with a chain of Dispatchers in the following order: "RootPath", "Asset", "ComponentEvent", "LoginDispatcher", "PageRender". Although "LoginDispatcher" is put after "Asset" I still see requests for Assets (i.e. /assets/xxx ) in my LoginDispatcher. I thought, this could not be the case as these requests should have been handeled by AssetDispatcher. What did I get/do wrong? Thanks in advance, nillehammer == http://www.winfonet.eu