[Catalyst] How to do REST without deserializing uploaded files (PUT)

2009-03-31 Thread Bruce McKenzie
I have a controller subclassed from Catalyst::Controller::REST. Most of my methods are happily ActionClass('REST')'d, but I have one where I want a file to be uploaded and NOT deserialized. Even if I did not include the ActionClass attribute, I would get a complaint about no deserialization

Re: [Catalyst] How to do REST without deserializing uploaded files (PUT)

2009-03-31 Thread Hans Dieter Pearcey
On Tue, Mar 31, 2009 at 09:03:15PM -0700, Bruce McKenzie wrote: Is there a way to declare some paths as NOT subject to deserialization? The reason I ask is that I want it for most everything...just not for a few paths. Instead of deserializing in begin() (as C::C::REST does for you), this might