vote up 9 vote down star
1

Looking around, I can't name a single web application (not web service) that uses anything besides GET and POST requests. Is there a specific reason for this? Do some browsers (or servers) not support any other types of requests? Or is this only for historical reasons? I'd like to make use of PUT and DELETE requests to make my life a little easier on the server-side, but I'm reluctant to because no one else does.

flag

6 Answers

vote up 16 vote down check

Actually a fair amount of people use PUT and DELETE, mostly for non-browser APIs. Some examples are the Atom Publishing Protocol and the Google Data APIs:

Beyond that, you don't see PUT/DELETE in common usage because most browsers don't support PUT and DELETE through Forms. HTML5 seems to be fixing this:

The way it works for browser applications is: people design RESTful applications with PUT and DELETE in mind, then "tunnel" those requests through POSTs from the browser. For example, see this SO question on how Ruby on Rails accomplishes this using hidden fields:

So, you wouldn't be on your own designing your application with the larger set of HTTP verbs in mind.

EDIT: By the way, if you're curious about why PUT/DELETE are missing from browser based form posts, it turns out there's no real good technical reason. Reading around this thread on the rest-discuss mailing list, especially Roy Fielding's comments, is interesting for some context:

EDIT: There are some comments on whether AJAX libraries support all the methods. It does come down to the actual browser implementation of XMLHttpRequest. I thought someone might find this link handy, which tests your browser to see how compliant the HttpRequest object is with various HTTP options.

Unfortunately, I don't know of a reference which collects these results.

link|flag
I'm not talking about web services, so the first part doesn't apply, but +1 for the links, very helpful. :) – musicfreak Jul 9 at 5:07
vote up 0 vote down

Some proxy servers with tough security policies might drop them. I'm using PUT and DELETE anyways.

link|flag
vote up 0 vote down

I've read that some browsers do not support other HTTP methods properly, though I can't name any specifics.

Rails, in particular, will pack your forms with a method parameter to explicitly set this even if the browser doesn't support those methods. That seems like a reasonable precaution if you're going to do this.

link|flag
vote up 1 vote down

Quite simply, the HTML 4.01 form element only allows the values "POST" and "GET" in its method attribute

link|flag
Hmm, that would make sense... But this doesn't apply to Ajax requests, right? I can use whatever method I want? – musicfreak Jul 9 at 5:15
If the browser is built to the HTML 4.01 spec, it won't understand anything other than the spec. That's all you can assume a browser can do – Gareth Jul 9 at 5:45
1  
Browsers are usually built with more than just an HTML spec - JavaScript is not part of HTML 4.01. – Wahnfrieden Jul 21 at 21:25
@Wahnfrieden - Well, that's true. To rephrase, an HTML document must conform to the HTML spec. The spec allows for <script> elements and has a way for those to be tied to HTML, but it explicitly disallows any <form> method except for POST and GET. – Gareth Jul 21 at 21:57
vote up 0 vote down

This depends on your browser and Ajax library. For example jQuery supports all HTTP methods even though the browser may not. See for example the jQuery "ajax" documentation on the "type" attribute.

The Restlet Java framework lets you tunnel PUT and DELETE requests through HTML POST operations. To do this, you just add method=put or method=delete to your URI's query string, eg:

http://www.example.com/user=xyz?method=delete ...

This is the same as Ruby on Rails' approach (as described by @ars above).

link|flag
From the jQuery documentation: "Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers." So you're wrong about that. – musicfreak Jul 9 at 7:43
vote up 0 vote down

I say use all the features of HTTP, browsers be damned, lol. Maybe it'll inspire more complete and proper use of the HTTP protocol moving forward. There's more happening on the net than just POSTs and GETs. About time browser implementations reflected this.

link|flag
Haha, I wish. Unfortunately I don't think making my web application not work will do anything besides anger my users. :) – musicfreak Jul 16 at 19:57
hmmm... yeah, i suppose you have a point. oh well, it was a nice thought. – codemonkey Jul 16 at 21:13
1  
but wait... it works for microsoft... – codemonkey Jul 16 at 21:15

Your Answer

Get an OpenID
or

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