Re: Adding servlets to a T5 app ...

2009-10-29 Thread Gunnar Eketrapp
Hi! For some reason my method to ignore path's does not get called! public static void contributeIgnoredPathsFilter(ConfigurationString configuration) { } Any clue anyone? Thanks in advance! /Gunnar Eketrapp 2009/10/27 Gunnar Eketrapp gunnar.eketr...@gmail.com Great and

Re: Adding servlets to a T5 app ...

2009-10-29 Thread Gunnar Eketrapp
I was wrong it does get called but it seems like T5 handles my servlet pathes anyway 2009/10/29 Gunnar Eketrapp gunnar.eketr...@gmail.com Hi! For some reason my method to ignore path's does not get called! public static void contributeIgnoredPathsFilter(ConfigurationString

Re: Adding servlets to a T5 app ...

2009-10-29 Thread Thiago H. de Paula Figueiredo
Em Thu, 29 Oct 2009 19:37:37 -0200, Gunnar Eketrapp gunnar.eketr...@gmail.com escreveu: I was wrong it does get called but it seems like T5 handles my servlet pathes anyway Please post your whole contributeIgnoredPathsFilter method. -- Thiago H. de Paula Figueiredo Independent Java,

Re: Adding servlets to a T5 app ...

2009-10-29 Thread Gunnar Eketrapp
Hi Thiago! I found the problem. I had added /foo/.* and /bar/.* but that didn't ignore /foo + /bar so I had to add them as well. Thanks anyway and sorry for disturbing you! Thanks again for the help with Login / ILogin. /Gunnar 2009/10/29 Thiago H. de Paula Figueiredo thiag...@gmail.com

Re: Adding servlets to a T5 app ...

2009-10-27 Thread Gunnar Eketrapp
Great and Thanks! 2009/10/26 Thiago H. de Paula Figueiredo thiag...@gmail.com Em Mon, 26 Oct 2009 14:46:32 -0200, Gunnar Eketrapp gunnar.eketr...@gmail.com escreveu: Hi! Hi! So I would like to configure some url:s within my app to be served by these servlets. Out-of-the-box, you

Adding servlets to a T5 app ...

2009-10-26 Thread Gunnar Eketrapp
Hi! This may be a stupid newbie quest but anyway ... The app that I am porting includes a number of service/callback servlets for various purposes. So I would like to configure some url:s within my app to be served by these servlets. If I just configure my servlets I assume that the T5 filter

Re: Adding servlets to a T5 app ...

2009-10-26 Thread Thiago H. de Paula Figueiredo
Em Mon, 26 Oct 2009 14:46:32 -0200, Gunnar Eketrapp gunnar.eketr...@gmail.com escreveu: Hi! Hi! So I would like to configure some url:s within my app to be served by these servlets. Out-of-the-box, you shouldn't have any problems, as Tapestry is a servlet filter, not a servlet. It is