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 4544 - 4573 of 14029   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4544
Hi. I've been struggling with trying to apply REST to a project of mine, a decentralized P2P payment system using only IOUs passed between friends in a social...
Ryan Fugger
rfugger
Offline Send Email
Oct 4, 2004
4:35 pm
4545
This is a lot to digest... so this response isn't going to be extremely helpful. I do have a few questions though. ... By 'distributed objects' do you mean an...
S. Mike Dierken
mdierken
Offline Send Email
Oct 5, 2004
6:05 am
4546
Thanks for the reply. I appreciate the input. On Mon, 4 Oct 2004 22:01:47 -0700, S. Mike Dierken <mdierken@...> ... Both. ... Due to anonymity...
Ryan Fugger
rfugger
Offline Send Email
Oct 5, 2004
6:42 am
4547
Ryan, I've recently been thinking about something similar -- a p2p protocol for a generic object system (data, not behavior) based on a network database model....
thompsonbry
Offline Send Email
Oct 5, 2004
11:55 am
4548
REST != HTTP. HTTP provides a protocol that can be used REST-fully in many ways, but it can also be used non-REST-fully. I don't know the Jabber protocol,...
thompsonbry
Offline Send Email
Oct 5, 2004
12:02 pm
4549
I'm lost. Perhaps if your applications was re-phrased using 'resource' rather than 'node' and 'object' I'd be able to understand. ... What is an 'originating...
S. Mike Dierken
mdierken
Offline Send Email
Oct 6, 2004
5:10 am
4550
On Tue, 5 Oct 2004 22:10:10 -0700, S. Mike Dierken <mdierken@...> ... Gotcha. ... Ripple is a P2P trust network of software node-agents living on http ...
Ryan Fugger
rfugger
Offline Send Email
Oct 6, 2004
7:35 am
4551
Thanks for the input Bryan. I think I will be going with non-resolvable URIs (ie, URNs) to separate resource identity from resource location, as location is...
rfugger
Offline Send Email
Oct 6, 2004
9:50 pm
4552
For me, once I understand the use cases (alice buys from bob, alice pays bob via ted) we could work on identifying resources. I actually think it's pretty...
S. Mike Dierken
mdierken
Offline Send Email
Oct 7, 2004
6:15 am
4553
On Wed, 6 Oct 2004 20:29:22 -0700, S. Mike Dierken <mdierken@...> ... It's all pretty much there at the project site: http://ripple.sf.net/ The...
Ryan Fugger
rfugger
Offline Send Email
Oct 8, 2004
6:53 am
4554
I am using GET to retrieve bunch of data from the backend, I am using REST. As part of my GET request I am attaching a filter object in text/xml format well...
Bud
buddy1908
Offline Send Email
Oct 8, 2004
8:22 pm
4555
... You might want to take a look at this: http://lists.w3.org/Archives/Public/www-rdf-interest/2001Aug/0182.html -joe -- http://BitWorking.org ...
Joe Gregorio
JCGregorio
Offline Send Email
Oct 8, 2004
8:35 pm
4556
FWIW, since that posting I've come to realize that it isn't RESTful since there's an expectation on behalf of the client that the server will process the...
Mark Baker
gonga_thrash
Online Now Send Email
Oct 8, 2004
9:04 pm
4557
... I'm not quite sure I understand the problem, are you saying that there is an implicit expectation of the client that POSTing will always return the results...
Joe Gregorio
JCGregorio
Offline Send Email
Oct 9, 2004
12:36 am
4558
... Sorry Joe, I thought this was the query-document-in/results-document-out idiom, not the separate resource being created. But no, I have the same issue...
Mark Baker
gonga_thrash
Online Now Send Email
Oct 9, 2004
3:13 am
4559
... REST. ... You probably should re-examine the approach of using XML to represent a filter. Alternatively, you could create a new 'search' resource via POST,...
S. Mike Dierken
mdierken
Offline Send Email
Oct 9, 2004
5:54 am
4560
... I'm confused now. What can I expect after I've POSTed something to a resource? --Chuck...
Chuck Hinson
cmhinson@...
Send Email
Oct 9, 2004
4:34 pm
4561
... But in this case it's not being handled by a single resource but a set of resources, each that behaves uniformly with respect to the methods used. Said...
Joe Gregorio
JCGregorio
Offline Send Email
Oct 9, 2004
6:50 pm
4562
... The first resource - the one to which the query document is POSTed - does not present the same interface as other resources because it's meeting an...
Mark Baker
gonga_thrash
Online Now Send Email
Oct 9, 2004
8:25 pm
4563
... Mark, does that imply that any use of POST that makes expectations beyond any of the four functions for POST defined by HTTP is breaking the uniform API? ...
Jan Algermissen
algermissen1971
Offline Send Email
Oct 9, 2004
9:32 pm
4564
Hi Jan, ... Practically, probably, though I don't believe those four were meant to be exhaustive. But on the other hand, they do seem to cover everything that...
Mark Baker
gonga_thrash
Online Now Send Email
Oct 10, 2004
12:14 am
4565
Hi Bud, I'm still trying to get my head around your problem. Is this correct? You are doing a GET, perhaps with some parameters URL encoded, but in addition...
Donald Strong
illyrian_au
Offline Send Email
Oct 11, 2004
12:15 am
4566
Sorry, I forgot to respond to this ... ... If you get a 200 response, you can expect that the document was processed. Mark. -- Mark Baker. Ottawa, Ontario,...
Mark Baker
gonga_thrash
Online Now Send Email
Oct 13, 2004
2:15 am
4567
From message 4566 ... ... and an entity body, otherwise it would be 204 (No content). From message 4564 ... I am not sure I see where this assertion comes...
Donald Strong
illyrian_au
Offline Send Email
Oct 13, 2004
7:37 am
4568
Why not GET the URI to which the POST was directed with the URI of the query document as a URL query parameter? E.g., POST <query-document> to <some-uri> ... ...
thompsonbry
Offline Send Email
Oct 19, 2004
9:54 am
4569
Hi Bryan, That approach suffers from the same implementation dependency that I described with the other approaches, namely that there's an expectation by the...
Mark Baker
gonga_thrash
Online Now Send Email
Oct 19, 2004
12:15 pm
4570
... This brings up a nagging question in the back of head every time you raise this point. "Are idioms allowed?" That is, we have GET, PUT, POST and DELETE,...
Joe Gregorio
JCGregorio
Offline Send Email
Oct 19, 2004
1:01 pm
4571
Hi Joe, ... No, the POST invocation isn't RESTful by itself. In the examples people have given, the client expects that a particular POST invocation will...
Mark Baker
gonga_thrash
Online Now Send Email
Oct 19, 2004
2:02 pm
4572
... Thanks for taking the time to explain this. That makes much more sense to me, particulary the substitutability test, which I may start abbreviating s14y :)...
Joe Gregorio
JCGregorio
Offline Send Email
Oct 19, 2004
4:32 pm
4573
... Nonsense, Mark. Of course that is REST -- it is right in the HTTP standard. The client is *told* by the server the URI of the new resource. The client...
Roy T. Fielding
roy_fielding
Offline Send Email
Oct 19, 2004
5:16 pm
Messages 4544 - 4573 of 14029   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