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 5257 - 5286 of 14029   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5257
Hello; Most of the discussion around REST that I can find refers to HTTP as the only transport used. While I understand that REST is an Architectural Style,...
scottgregory
Offline Send Email
Oct 5, 2005
2:52 pm
5258
... [hvw] I'm not quibbling when I remark that HTTP is an application protocol, not a "transport". It's a protocol for apps that transfer hypertext messages ...
Hugh Winkler
hwinkler99
Offline Send Email
Oct 5, 2005
3:18 pm
5259
Hugh, ... There could be a lot of them, as long as they make sense when applied to *any* resource: example: GET /my/bank/account (good) example: LOCK...
Walden Mathews
waldenmathews
Offline Send Email
Oct 5, 2005
4:01 pm
5260
... HTTP is not a transport protocol. Abusing HTTP to serve as a transport protocol is one of the things that can lead to people not taking advantage of the...
Jon Hanna
hack_poet
Online Now Send Email
Oct 5, 2005
4:16 pm
5261
... [hvw] Excellent point. Further thoughts: One reason the web has been successful is that REST enabled all kinds of apps to run using this simple protocol....
Hugh Winkler
hwinkler99
Offline Send Email
Oct 5, 2005
4:32 pm
5262
You might say that message-oriented middleware (MOM) follows the REST architectural style. * resource identifier = topic/queue name + message ID vs. URI *...
Jeoff Wilks
jeoffw
Offline Send Email
Oct 6, 2005
12:55 pm
5263
... And hypermedia. And caching/cache-control. And pull vs. push. ...jsled -- http://asynchronous.org/ - `a=jsled; b=asynchronous.org; echo ${a}@${b}`...
Josh Sled
joshsled
Offline Send Email
Oct 6, 2005
1:35 pm
5264
And all notions of state management.... When I see "GET [uri]". I know what the response represents, and I know that the operation did not change the state of...
Walden Mathews
waldenmathews
Offline Send Email
Oct 7, 2005
12:06 am
5265
... Message buses can support hypermedia representations, just as HTTP can support non-hypermedia. Most messaging systems do support caching: clients can...
Jeoff Wilks
jeoffw
Offline Send Email
Oct 7, 2005
12:48 pm
5266
... So would I if that was what I wrote, but it isn't. Dissertations are a successful walk through a minefield -- summarizing them is not. One of the...
Roy T. Fielding
roy_fielding
Offline Send Email
Oct 7, 2005
8:07 pm
5267
Hi people, I'm new in REST universe and I want to validate a user with a password using REST philosofy, but the unique method that I thought ... POST /auth...
iuridiniz
Offline Send Email
Oct 8, 2005
3:09 am
5268
To get the state of a user you would use GET: GET /auth/users.cgi?user=iuri HTTP/1.0 Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ== 200 OK ...
S. Mike Dierken
mdierken
Offline Send Email
Oct 8, 2005
4:45 am
5269
... HTTP authentication? TLS/SSL? Nic Ferrier...
Nic Ferrier
nferrier_tap...
Offline Send Email
Oct 8, 2005
8:42 am
5270
One of the problems that I keep on bumping up against is "what's a good data model for a URI?" In particular, how do you represent the path? (For the purposes...
Mark Nottingham
mnotting
Offline Send Email
Oct 8, 2005
5:16 pm
5271
... I usually leave it as a single string, which makes it really easy to do pattern matching: <path>/foo/</path> I just wrote some code using your #1 (parsing...
Justin T. Sampson
justin_t_sam...
Offline Send Email
Oct 8, 2005
8:58 pm
5272
... Mark, you need a vacation. ;-) ....Roy...
Roy T. Fielding
roy_fielding
Offline Send Email
Oct 8, 2005
9:51 pm
5273
... I treat paths as tuples delimited by '/', so /foo/bar and /foo/bar/ are both the {foo,bar} tuple. This abstraction hasn't caused any problems in terms of...
Lucas Gonze
lucas_gonze
Offline Send Email
Oct 9, 2005
1:06 am
5274
Me? Me? Why do you say that? ... See the whole, diseased history of this line of thinking here: http://www.mnot.net/blog/2004/05/12/on_infosets ...
Mark Nottingham
mnotting
Offline Send Email
Oct 9, 2005
5:36 am
5275
... Treating it as a tuple (foo,bar) works for me as well. BTW, when I see {foo,bar} my mind parses that as a set :)...
Sandeep Shetty
sandeep.shetty@...
Send Email
Oct 9, 2005
10:35 am
5276
... My mistake. Re-reading with emphasis on "unregulated" I now see exactly what you were saying. Looking at Rohit's <http://www.ics.uci.edu/~rohit/>...
Jeoff Wilks
jeoffw
Offline Send Email
Oct 9, 2005
12:52 pm
5277
... I'm really down on defaults these days. So if you're not going on vacation, it would be #3 ;) I liked Lucas' syntax btw; maybe y'all should use json or...
Bill de hÓra
bdehora
Offline Send Email
Oct 9, 2005
4:10 pm
5278
Assume resources http://example.com/customer/2340 http://example.com/customer/2341 http://example.com/customer/2342 http://example.com/customer/2343 ...
Grant Murray
gmurray1966
Offline Send Email
Oct 9, 2005
4:10 pm
5279
... This only indirectly answers your question, but - for messaging (HTTPLR) I came to the conclusion that URLs be issued by the server via a Location header....
Bill de hÓra
bdehora
Offline Send Email
Oct 9, 2005
4:33 pm
5280
... There are large number of unused resources, what is your definition of 'next', and what is the significance of sequence for these resources? With PUT, the...
S. Mike Dierken
mdierken
Offline Send Email
Oct 9, 2005
7:27 pm
5281
... 'next' : next in the sequence. Often data modellers choose sequences without good reason. For example 1: Slashdot users get the number numerically, ...
Grant Murray
gmurray1966
Offline Send Email
Oct 9, 2005
8:36 pm
5282
... The 2) would have to be a POST, as the PUT request contains the URI of the resource. A PUT request means "make the resource 'uri123xyz' look like this ...
S. Mike Dierken
mdierken
Offline Send Email
Oct 10, 2005
1:15 am
5283
... I'll skip the analogy to C++ pointers and memory addresses, and suggest that a document with explicit 'next' and 'prev' URI references work for a queue and...
S. Mike Dierken
mdierken
Offline Send Email
Oct 10, 2005
1:20 am
5284
... Maybe we can look on the intention of a request. If a client request to server, "please use this XML data to create a new entry". Here, "create a new...
toydi
iamstupidiot
Offline Send Email
Oct 10, 2005
9:53 am
5285
... I have beat this hobbyhorse before, so have to apologize to the many people who have already seen it, but my "Secure Protocol for Desktop Web Servers"...
Lucas Gonze
lucas_gonze
Offline Send Email
Oct 10, 2005
11:11 pm
5286
Lucas, Interesting paper, and one I had not seen before (as a relative newcomer to rest-discuss). One possible addition to your work: since many clients sit...
Jeoff Wilks
jeoffw
Offline Send Email
Oct 11, 2005
12:53 am
Messages 5257 - 5286 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