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 > Em Thu, 29

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 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, Apache Tapestry 5 and Hiber

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 > Hi! > > For some reason my method to ignore path's does not get called! > > > public static void contributeIgnoredPathsFilter(Configuration > configuration) > { > >

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(Configuration configuration) { } Any clue anyone? Thanks in advance! /Gunnar Eketrapp 2009/10/27 Gunnar Eketrapp > Great and Thanks! > > 2009/10/26 Thiago H. de

Re: Adding servlets to a T5 app ...

2009-10-27 Thread Gunnar Eketrapp
Great and Thanks! 2009/10/26 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

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 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 possible that Tapestry ha

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 w