Request Processing FAQPage added by Howard M. Lewis ShipRequest ProcessingHow do I get Tapestry to not handle a request?Often, when integrating with certain libraries, or working with legacy code, you will want Tapestry to ignore a request and let the normal servlet or other processing handle the request. The easy way to do this is to contribute a regular _expression_ to the IgnoredPathsFilter service, whose job is to exclude some requests. public static void contributeIgnoredPathsFilter(Configuration<String> configuration) { configuration.add("/dwr/.*"); }
Change Notification Preferences
View Online
|
- [CONF] Apache Tapestry > Request Processing FAQ confluence