Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any data regarding how browsers actually support rest http verbs (especially PUT, DELETE). This question is mostly motivated by the fact that many sources (such as this stackoverflow answer) inform that most browsers don't suport PUT and DELETE but don't say which.

Rails solves this using a patch on the client, and reversing the patch on the server, but I wonder, for instance, which browsers wouldn't need such hack.

share|improve this question
What does this have to do with the browsers? – John Saunders Jul 12 '10 at 3:04
Jonh: Several of them can't perform PUT DELETE queries. This is mostly important in ajax queries, as good old forms can't do this by spec. Also, on restful webservices, the semantics behind PUT and DELETE matter. – Daniel Ribeiro Jul 12 '10 at 4:19

3 Answers

up vote 5 down vote accepted
+50

When in doubt, ask Anne:

http://annevankesteren.nl/2007/10/http-method-support

It's a couple of years old, but it gives a clean bill of health to PUT and DELETE, but it also tries different cases of more obscure verbs like TRACE and PROPFIND...

EDIT Another source that has come to more or less the same conclusion: That XMLHttpRequest supports PUT and DELETE: http://jshirley.vox.com/library/post/xmlhttprequest-and-rest.html

EDIT The question has been asked before of course, but the two year old answers are still valid.

share|improve this answer
2  
Yes, it is old. But then, i guess it is sadly, the best we have, without crowdsourcing people into mnot.net/javascript/xmlhttprequest – Daniel Ribeiro Jul 15 '10 at 14:59

Using this site, which tests my browser, I can assert the following for Firefox 3.6.2:

What Methods Are Available?

  1. GET: success
  2. Get: fail (Method sent: GET)
  3. POST: success
  4. PUT: success
  5. DELETE: success
  6. TRACE: fail (Method sent: )
  7. FOO: success
  8. Foo: fail (Method sent: FOO)

And chrome (5.0.369.0 (43550) both on linux):

What Methods Are Available?

  1. GET: success
  2. Get: fail (Method sent: GET)
  3. POST: success
  4. PUT: success
  5. DELETE: success
  6. TRACE: fail (Method sent: )
  7. FOO: success
  8. Foo: success

However someone might have aggregated similar results on more comprehensive browser/os pairs. Perhaps other user's would be intereseted in helping us compile such data by saying their results?

share|improve this answer

See the PutDeleteSupport page of the Atom Wiki. You might be interested in browsing other Atom Wiki pages related to HTTP.

share|improve this answer
Thanks, but this one actually only show the support on language clients. I am looking for the support on browser clients, such as chorme, firefox, ie, opera, opera mini, and so on. – Daniel Ribeiro Jul 10 '10 at 20:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.