Re: [Resin-interest] Filter mapping to "/*" with no servlets mapped to "/"

2007-10-30 Thread Chris Chen
Apache is not only running this webapp.. It's also running phpBB, wordpress, trac, and other software that is hosted on the same server. So I do need apache in the equation. The existing workaround to send all requests to resin is working now for me... I'm only suggesting whether mod_caucho

Re: [Resin-interest] Filter mapping to "/*" with no servlets mapped to "/"

2007-10-30 Thread Eric Kreiser
Well... if you can not determine a mapping... and as such you need to send all requests to Resin... why are you having apache in the equation at all... plus... if this is the case... and you still want apache(for some reason)... why are the existing methods to send all requests to resin not eno

Re: [Resin-interest] Filter mapping to "/*" with no servlets mapped to "/"

2007-10-30 Thread Chris Chen
Yea, I saw that.. unfortunately, the "/controller/action" is actually determined dynamically. It's actually not the static string "controller" but a controller name that is based on the available action controllers. The job of the UrlMapper filter is to parse this URL and then dispatch th

Re: [Resin-interest] Filter mapping to "/*" with no servlets mapped to "/"

2007-10-30 Thread Sam
> [ ... ] > > Here's the thing. Grails' web.xml has filter mappings for the url- > pattern of "/*". One of the filters, the UrlMapper, will actually > process the URL and then dispatch the request to the proper > controller and action to process the request. > > However, there is no servle