... RFC 2616 (10.2.3) has this to say about 202 Accepted: "The entity returned with this response SHOULD include an indication of the request's current status...
But now you rely on the entity enclosed in your response to fullfill the request, which seems to me limiting. How do I discover and process that request using...
10554
Eric J. Bowman
eric@...
Mar 28, 2008 3:37 pm
... Content negotiation could be used. For example, an Atom Protocol client which doesn't know about confirmation could receive a 204 response, while (X)HTML...
... I've always considered a 202 to be an asynchronous mechanism because it doesn't carry an intent on further action required, which the meaning you put...
Hi, I have just posted a rather long sketch of an authentication protocol, where I make the following claims: [[ Here is a proposal for an authentication...
HI all, My name is Sanju, and i am new to this group. Found recently about REST and want to know about it. I find about this group in one of the lectures of...
hi! Happy Holi .. - Gaurang To send your own personalized greetings log into indyarocks.com Click here to send FREE SMS greetings Please note: This message was...
10559
Eric J. Bowman
eric@...
Mar 30, 2008 6:31 am
... I disagree that my method somehow makes the 202 response synchronous. To be more RESTful and more in-line with RFC 2616, I suppose my mechanism should...
10560
Eric J. Bowman
eric@...
Mar 30, 2008 7:03 am
My question for the group, is whether it's even valid to issue a redirect for DELETE when GET, HEAD, PUT and perhaps OPTIONS would respond 200 OK for the same...
I have to say, I may not agree completely with your solution but I certainly agree that it was well thought of, is logicial, and wouldn’t cause friction when...
"The issue of content-type negotiation within the realm of REST architectures is one that comes up often, but seems to me Fielding has been pretty consistent...
... Agreed; sounds more like wishful thinking than reality. In fact, Roy's been pretty clear on the pillars of REST, and that if you break one you're not that...
I think Roy was quoted out of context in that article. The rest-discuss post[1] to which the article refers is talking about negotiating *languages*, not...
Hi Stefan, ... After taking a glance at it: I am not sure about the way he quotes Roy or XML vs JSON being mechanical etc. but I think it is generally correct...
On Mon, Mar 31, 2008 at 4:06 PM, Jan Algermissen ... Certainly, lots do it this way, but the correctness of it can be disputed, and I'd assert that the state...
This thread prompts me to ask a question about my own approach to conneg within REST implementations. My understanding of REST is that the "important...
Isn't that what agent-driven negotiation is all about? Makes perfect sense to me. In the example below "index" is a resource, and the the server is letting the...
Strictly speaking, this is still agent-driven content-negotiation, and the redirect you are proposing may be an implementation detail. IMO, this redirect is...
I think the use of 202 for this use case is not correct. 202 is a non- committal response, meaning that, the server has accepted the request, but is not ready...
On Mon, Mar 31, 2008 at 5:16 PM, Subbu Allamaraju ... Something like "I guarantee you that the resource will be deleted as soon as possible" IIRC, CouchDB uses...
... IIUC the benefit is better cacheability and better support for authoring (if you know the URI of that PDF it is straight forward to PUT to it, using a...
Yep. This is the primary reason I have worked to use URIs that do not include the representation type. It makes invalidating/updating the local cache much...
On Mon, Mar 31, 2008 at 3:35 PM, Jan Algermissen ... Not necessarily. The accepted input representations may not be related to the output representations. The...
... Alexander> Certainly, lots do it this way, but the correctness of it Alexander> can be disputed, and I'd assert that the state of affairs Alexander> again...
... But your question was "how can I in the *browser* specify ...", and the answer is ; <a href="/some/resource"/> ... and let the client a) give hints on best...
One of the things I am coming to realize is that HTML is not the whole picture. HTTP has headers to handle issues that the document markup was never meant to...
... Alexander> ... and let the client a) give hints on best response in Alexander> the request header, then b) decide if the default values Alexander> were...
... I think there's some confusion here. If you want to link to specific formats through your browser, by all means do it through ?format=whatever *because*...