Re: Handler Chain (based on request method)

2009-10-28 Thread Perrin Harkins
On Wed, Oct 28, 2009 at 12:58 PM, Aaron Dalton wrote: > I'm using mod_perl and CGI::Application::Dispatch to create a RESTful > web application.  In the one resource, GETs should be sent to the > default handler, and all other requests to the dispatcher.  I have tried > using and , but they do no

Re: Handler Chain (based on request method)

2009-10-28 Thread André Warnier
André Warnier wrote: Just by curiosity, what happened to the suggestions I gave you on the Apache httpd list (apart from the first one, which was to cross-post here) ? Ok, sorry, I see that response to the httpd list just got there. Maybe better to move the whole discussion here, there is p

Re: Handler Chain (based on request method)

2009-10-28 Thread André Warnier
Aaron Dalton wrote: I'm using mod_perl and CGI::Application::Dispatch to create a RESTful web application. In the one resource, GETs should be sent to the default handler, and all other requests to the dispatcher. I have tried using and , but they do not appear to be working. The handlers get

Handler Chain (based on request method)

2009-10-28 Thread Aaron Dalton
I'm using mod_perl and CGI::Application::Dispatch to create a RESTful web application. In the one resource, GETs should be sent to the default handler, and all other requests to the dispatcher. I have tried using and , but they do not appear to be working. The handlers get processed regardless.