According to the documentation, the filter chain happens after the request has been routed. Is there any way to have the filter chain apply before the request has been routed?
In particular, we want to apply a number of filters prior to the URL mapping. If we do these as normal filters, either we can't use the request binding that happens when routing, or we have to do that ourselves in the actions.