if I do this:
curl -X POST -H 'Content-type: application/xml' -d '<person>...</person>' 'http://0.0.0.0:3000/people/12?_method=PUT'
I get "Only get, put, and delete requests are allowed." Why? Rails 2.3.2
|
if I do this:
I get "Only get, put, and delete requests are allowed." Why? Rails 2.3.2
| |||
|
feedback
|
|
luca is correct, you need to send the X-Http-Method-Override header with your request. Putting _method=put in the JSON body did not work for me. Your curl command line will look like this:
| |||
|
feedback
|
|
This is actually a malfunctioning in rails recent versions. The solution is to pass the HTTP method override header with put. Important:the full name of the header is http-x-http-method-override but rails adds the http prefix so you should trim that part. | |||
|
feedback
|
|
There's a couple of things that could be going wrong. First off, you're sending a On a more pedestrian error, the routing (in If you're using a standard RESTful controller, that makes good sense, because you're accessing a member ( I would try using | |||||||||
feedback
|