Search the web
Sign In
New User? Sign Up
rest-discuss · REST Discussion Mailing List
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4696 - 4725 of 14026   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4696
All, In an effort to reduce the amount of Wiki spam on the RESTwiki, it now requires a login in order to edit. Eugene tells me this will eradicate the bot...
Mark Baker
gonga_thrash
Offline Send Email
Dec 1, 2004
12:17 pm
4697
... Subject: The Restful Web Date: Thu, 02 Dec 2004 17:45:00 -0800 From: XML.com Update <elists-admin@...> To: differance@... XML.com...
Seth Johnson
differance1
Offline Send Email
Dec 3, 2004
2:01 am
4698
I'm wondering if it would be okay to use a extension header to indicate acknowledgement of receipt of a resource in order to trigger new state. Take some queue...
Jeffrey Winter
kimberliewinter
Offline Send Email
Dec 15, 2004
8:38 pm
4699
... I don't think you would need to do this if your transfer protocol was reliable. http://www.prescod.net/reliable_http.html...
Vincent D Murphy
johnfoobar1
Offline Send Email
Dec 15, 2004
8:47 pm
4700
This seems to be more about getting data to the server reliably. I was actually thinking more about how to get something like ActiveMQ's HTTP JMS interface to...
Jeffrey Winter
kimberliewinter
Offline Send Email
Dec 15, 2004
8:59 pm
4701
I am new to these concepts, so links to old discussions are welcome; I have done some research but it might be better to just ask a possibly naive question. ...
rochester390
Offline Send Email
Dec 15, 2004
9:12 pm
4702
It violates the safety of GET, since the intent of the GET message is to update state on the server. It's idempotent, but I don't know why that's important. ...
Mark Baker
gonga_thrash
Offline Send Email
Dec 15, 2004
9:14 pm
4703
... GET /queue <message id="2" nextMessage="/queue/3">...</message> # failure re-request. # success: GET /queue/3 <message id="3"...
Josh Sled
joshsled
Offline Send Email
Dec 15, 2004
9:14 pm
4704
... I think the core of this confusion is: what is the resource? in an e-commerce app it seems like the resource is being decorated for each user which is a...
Nic Ferrier
nferrier_tap...
Offline Send Email
Dec 15, 2004
9:25 pm
4705
... Of course. I have the bad habit of conflating the two concepts. ... I want to make sure that the client can re-establish context at anytime but GETting...
Jeffrey Winter
kimberliewinter
Offline Send Email
Dec 15, 2004
11:59 pm
4706
... I seems to me that the server needs to receive some acknowledgement that the client has successfully processed the message in order to clear the head of ...
Jeffrey Winter
kimberliewinter
Offline Send Email
Dec 15, 2004
11:59 pm
4707
Okay, here's another crack at this using GET and DELETE. 1. Start with a queue at /queue. A GET at that queue hangs until a message occurs. GET /queue The...
Jeffrey Winter
kimberliewinter
Offline Send Email
Dec 16, 2004
12:03 am
4708
... Maybe its possible to do something analogous to TCP acknowledgment with HTTP headers, but I would have the server signal that its looking for the...
Vincent D Murphy
johnfoobar1
Offline Send Email
Dec 16, 2004
12:54 am
4709
Nice article Paul. For many producers and one consumer it suggests a protocol more like this: Producer ======== request POST /queue/next response HTTP 200 OK ...
Donald Strong
illyrian_au
Offline Send Email
Dec 16, 2004
1:19 am
4710
Sorry, if I had read the article properly I might have copied the first part of the protocol correctly. Producer ======== request POST /queue response HTTP 201...
Donald Strong
illyrian_au
Offline Send Email
Dec 16, 2004
3:00 am
4711
... IME, you want to avoid that if you can, but if you can't then you're likely best off making the ack explicit by using a POST request from the client to the...
Mark Baker
gonga_thrash
Offline Send Email
Dec 16, 2004
3:15 am
4712
... I [obviously] misunderstood your original intent: you're trying to do the actual `pop` operation on a queue data-type ... I'd do so in a hybrid of what...
Josh Sled
joshsled
Offline Send Email
Dec 16, 2004
3:36 pm
4713
... Josh, that's very nice indeed. It is a perfect example of how to put 'API' semantics into the message instead of implicitly extending the semantics of the...
Jan Algermissen
algermissen1971
Offline Send Email
Dec 16, 2004
4:11 pm
4714
Hi again, My original posting stated that I assumed many producers and one consumer. I thought that was the usual setup for queues, ie. to regulate input into...
Donald Strong
illyrian_au
Offline Send Email
Dec 17, 2004
5:26 am
4715
... [Various race conditions described here. Other exist.] ... The problem is the GET followed by the DELETE are intended to be atomic. A side effect is needed...
patrickdlogan
Offline Send Email
Dec 17, 2004
10:47 pm
4716
... be atomic. [...] Indeed, I'll note that there is nothing in the HTTP spec which prohibits returning a body in the response to a DELETE request. So, ...
Elias Sinderson
elias95060
Offline Send Email
Dec 18, 2004
12:39 am
4717
... Since GET and DELETE are both idempotent, there is not need to come up with any other mechanism for atomicity. GET and DELETE can be called repeatedly in...
Jeffrey Winter
kimberliewinter
Offline Send Email
Dec 18, 2004
3:22 pm
4718
Man, this has gone on for a while. I don't remember what the actual application was -- or did anyone bother to ask or mention it? How does this queue thing fit...
Justin Sampson
justin_t_sam...
Offline Send Email
Dec 18, 2004
7:39 pm
4719
I've yet to see a workable and glitch-free description of a classical "message queue" using HTTP. Even a variant that uses DAV would be useful to have...
S. Mike Dierken
mdierken
Offline Send Email
Dec 19, 2004
8:06 am
4720
... One of us must be confused - the issue of whether the methods are idempotent or atomic are somewhat orthogonal. The point that Patrick was trying to make,...
Elias Sinderson
elias95060
Offline Send Email
Dec 20, 2004
7:36 am
4721
Hi Group, I'm very new to REST but am interested in moving my current development effort into the model. That said, I must confess I need some clarification...
rlution
Offline Send Email
Dec 28, 2004
3:20 pm
4722
... POST is more general than create, and in fact even PUT can create a resource. "create", AFAICT, emerged from the desire for some to fit the new "uniform...
Mark Baker
gonga_thrash
Offline Send Email
Dec 28, 2004
6:40 pm
4723
... It's hard to say generally, but I think you're seeing two different things: * an inherent similarity in the two methods, including a bit of a semantic...
Josh Sled
joshsled
Offline Send Email
Dec 28, 2004
11:16 pm
4724
... I haven't found a reason to use PUT rather than POST for creating a new resource. I'm still waiting for the killer example where it makes sense. Using PUT...
Vincent D Murphy
johnfoobar1
Offline Send Email
Dec 29, 2004
12:12 am
4725
... Josh, while that may be your theory (and you are welcome to it), the notion that there are two levels of REST is completely false. There are different...
Roy T. Fielding
roy_fielding
Offline Send Email
Dec 29, 2004
2:38 am
Messages 4696 - 4725 of 14026   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help