Em Sun, 10 Jan 2010 15:48:54 -0200, paha <[email protected]> escreveu:

Hello,

Hi!

sorry for my newbie question and poor english, but i was unable to find an
answer neither in tutorials nor in this maillist.
i want my tapestry filter to process all request going to let's say
http://www.someurl.com/myapp/...
(to let requests going to root be processed by some other servlet)

Tapestry is a servlet filter, not a servlet, so it can be used with servlets without interfering with them. If you run into some problem, you can tell Tapestry to ignore some paths. Suppose you have a servlet handling requests to /else. Add this to AppModule:

public static void contributeIgnoredPathsFilter(Configuration<String> configuration) {
    configuration.add("/else/.*");
}

--
Thiago H. de Paula Figueiredo
Independent Java, Apache Tapestry 5 and Hibernate consultant, developer, and instructor Owner, software architect and developer, Ars Machina Tecnologia da Informação Ltda.
http://www.arsmachina.com.br

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to