Re: Changing request method

2011-04-05 Thread Jason Cwik
> > > > In the module source, r->method is const and the comments say "look, but > don't touch". That said, besides breaking the limit directive will it work? > > It's poor form but it works. > It does indeed work! I'll do some further testing to make sure it doesn't break anything else, but I th

Re: Changing request method

2011-04-04 Thread Jason Cwik
Sent from my iPhone On Apr 4, 2011, at 5:49 PM, Ben Noordhuis wrote: > On Tue, Apr 5, 2011 at 00:10, Jason Cwik wrote: >> I'm trying to write a module that will improve REST compatibility with Flex >> & JS by implementing support for X-Http-Method-Override to change the >> request method when

Re: Changing request method

2011-04-04 Thread Ben Noordhuis
On Tue, Apr 5, 2011 at 00:10, Jason Cwik wrote: > I'm trying to write a module that will improve REST compatibility with Flex > & JS by implementing support for X-Http-Method-Override to change the > request method when only GET/POST are the only methods supported from the > client. > > I've read

Changing request method

2011-04-04 Thread Jason Cwik
Hi all, I'm trying to write a module that will improve REST compatibility with Flex & JS by implementing support for X-Http-Method-Override to change the request method when only GET/POST are the only methods supported from the client. I've read the modules book and looked through lots of other m