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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 6345 - 6374 of 14029   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6345
DHH (main creator of Ruby on Rails) is taking Rails in a RESTful direction. Here is his blog <http://www.loudthinking.com/arc/000593.html> , here is a (long) ...
Ron
tiltbike
Offline Send Email
Jul 13, 2006
11:17 am
6346
... I wish the reference to REST was a bit more direct and clear. The term CRUD may be useful to help communicate the GET/POST/PUT/DELETE meaning, but the...
Jerome Louvel
jerome.louvel
Offline Send Email
Jul 13, 2006
12:31 pm
6347
... So, this is good news. Rails is currently busted from a REST viewpoint - it's conventions are at odds with sound web design, and it's about time, frankly....
Bill de hÓra
bdehora
Offline Send Email
Jul 13, 2006
1:35 pm
6348
... Ditto. Good to see. I'm also mildy concerned about the use of "CRUD", because as Jerome says, the mapping to uniform operations isn't one-to-one. Labels...
Mark Baker
gonga_thrash
Offline Send Email
Jul 13, 2006
3:16 pm
6349
Just wondering if anyone knows of a dotNET REST framework; perhaps one similar to the Restlet (http://www.restlet.org/) framework. /Stuart...
Stuart Holcombe
stuart_holcombe
Online Now Send Email
Jul 13, 2006
4:15 pm
6350
Hi all, I'm just getting into this REST thing so please have some patience with my newbie level questions :-) Say that I want to get a set of cars. It seems...
Jonas Bengtsson
caelumse
Offline Send Email
Jul 19, 2006
6:53 pm
6351
Hi Jonas, ... Thez are all welcome, that is one of the purposes of this list! ... Both approaches are fine from a REST POV. The latter is IMO more human...
Jan Algermissen
algermissen1971
Offline Send Email
Jul 19, 2006
7:38 pm
6352
All of these identifiers are pretty good from a REST perspective. The level of question you have is more on the level of business logic. That is,...
Lucas Gonze
lucas_gonze
Offline Send Email
Jul 19, 2006
7:45 pm
6353
Signal vs. Noise has a post today about endless scrolling: http://37signals.com/svn/archives2/no_more_more_pages.php It's a whiz-bang sort of effect, where...
Michal Migurski
michal_migurski
Offline Send Email
Jul 19, 2006
8:04 pm
6354
I don't think paging breaks REST - rather, I think that it's just a default value of part of the query string. One system I helped architect made sure all...
Paul Jimenez
paulakapj
Offline Send Email
Jul 19, 2006
8:19 pm
6355
Hi Michal, I don't agree, as new items are added, the meaning of the resource doesn't change, "http://example.org/list?page=2" is always the second page of the...
Paul James
p4u1j4m3s
Offline Send Email
Jul 19, 2006
8:24 pm
6356
... My own preference would be to use /cars/ for the collection and /cars/123 for a particular car, enjoying the conceptual hierarchy. But it's totally a...
Justin T. Sampson
justin_t_sam...
Offline Send Email
Jul 19, 2006
8:35 pm
6357
... Yeah. The Rico library[1] has an Ajax widget for scrolling like this, which puts a scrollbar on an HTML table. When the user first loads the page, they get...
Justin T. Sampson
justin_t_sam...
Offline Send Email
Jul 19, 2006
8:45 pm
6358
Hello I'm very pleased to announce the translation of the "chapter 5 : Representational State Transfer (REST)" from the Roy Thomas Fielding dissertation into...
Fred Laurent
laurent_fred
Offline Send Email
Jul 27, 2006
12:13 pm
6359
I'm considering making different URL's for retrieval of a list of sites vs. one site (sites are actual locations on the ground in my scenario): List of sites:...
Scott Chapman
chappie_mischko
Offline Send Email
Aug 1, 2006
8:27 pm
6360
Hi Scott, The same question came up a couple weeks ago -- you'll find several different opinions. But all were agreed that REST itself doesn't suggest one or...
Justin T. Sampson
justin_t_sam...
Offline Send Email
Aug 1, 2006
9:37 pm
6361
I think he was asking not only for a resource that is a collection, but also the client providing an explicit list of data elements to return. Although I...
S. Mike Dierken
mdierken
Offline Send Email
Aug 2, 2006
4:36 am
6362
Hi, I know it is a repeating topic how to correctly authenticate a client to a REST interface. Please first note, if I talk about client I do not mean browser,...
Sebastian Stein
steinchen802002
Offline Send Email
Aug 2, 2006
5:34 pm
6363
Hi Sebastian, We have a (very) little experience in providing web services as a finantial institution. We provide services to other financial institutions. We...
Miguel Covas O'Ryan
miguel.covas@...
Send Email
Aug 2, 2006
7:04 pm
6364
... I think it is not the problem to generate HTTP auth, but to handle it. But I might be wrong. On the server side I have a Tomcat handling the requests in a...
Sebastian Stein
steinchen802002
Offline Send Email
Aug 2, 2006
7:57 pm
6365
... Thanks for this lengthy description of your experience. I think it is the way I intended to go. I will first again check if HTTP auth might work, but if it...
Sebastian Stein
steinchen802002
Offline Send Email
Aug 2, 2006
8:01 pm
6366
Tomcat gives several options for implementing and patching in your own notion of "realm". Check the tomcat docs. Should be no problem. ... I ... in ... ...
Walden Mathews
waldenmathews
Offline Send Email
Aug 2, 2006
8:17 pm
6367
... Perhaps the discussion is going off topic, but anyway, as far as I know you can always retrieve the user / password even the Tomcat is handling the...
Miguel Covas O'Ryan
miguel.covas@...
Send Email
Aug 2, 2006
8:17 pm
6368
... I believe it can be configured either way, and potentially differently depending on the URL path. Our application handles all authentication inside Tomcat...
John Panzer
zwyrthrop
Offline Send Email
Aug 2, 2006
8:19 pm
6369
... HTTP Basic auth is definitely the way to go. If your framework doesn't help you, in the worst case you can just read and parse the Authorization header...
Justin T. Sampson
justin_t_sam...
Offline Send Email
Aug 2, 2006
8:58 pm
6370
... Any reason why not PUT? ... We've implemented just that using C# and Java restlets. Gives normal client login. ... We've done it as part of the application...
Dave Pawson
dpawson2000
Offline Send Email
Aug 3, 2006
6:54 am
6371
... HTTP Basic offers zero security unless encryption is coming from somewhere else (SSL). HTTP Digest is the way to go if you aren't going over a secure...
Jon Hanna
hack_poet
Online Now Send Email
Aug 3, 2006
2:25 pm
6372
I am conducting research into the practices of enterprise architecture and software development and would love your participation. The URL to the survey is:...
jm04469
Offline Send Email
Aug 4, 2006
1:01 pm
6373
If hitting a URL with GET is supposed to give you a view of the resource and it's not a form by default, then how to do you get a <form...> view of it for ...
Scott Chapman
chappie_mischko
Offline Send Email
Aug 5, 2006
5:04 pm
6374
Scott, IMO forms should either be discovered while the client proceeds through the application's state machine or the MIME type that supports the desired...
Jan Algermissen
algermissen1971
Offline Send Email
Aug 5, 2006
7:06 pm
Messages 6345 - 6374 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