Em Sun, 09 Nov 2008 19:08:38 -0300, Henrik Schlanbusch <[EMAIL PROTECTED]> escreveu:

Hi

Hi!

I have run into a problem.
I have defined two servlets in my web.xml - one tapestry5
and one for apache CXF.

Strictly speaking, Tapestry 5 is a servlet filter. :)

When I try to browse the wsdls on my server, I can see
that the CXF servlet logs out that it has been hit,
but still what is returned is a tapestry page.

You should add your servlet path to the list of paths Tapestry will ignore. You can do that looking at the bottom of this page: http://tapestry.apache.org/tapestry5/guide/conf.html.

Just add this method to your AppModule:

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

--
Thiago H. de Paula Figueiredo
Independent Java consultant, developer, and instructor
http://www.arsmachina.com.br/thiago

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to