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 10871 - 10900 of 14029   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
10871
Hmmm I don't think we are that far off... ... think I have ... Agreed. That is what I meant when I said "and usually navigate to that state in one step". When...
wahbedahbe
Offline Send Email
Jun 1, 2008
7:00 pm
10872
... mike> As for the media-type of the return, I do this: - return a mike> helpful (possibly brief) message as the status description mike> (400 "Invalid...
Berend de Boer
berenddeboer
Online Now Send Email
Jun 1, 2008
7:40 pm
10873
... I use something similar to Mike's approach. If we use the same media-type as the request we can ensure the agent will understand it, sometimes the agent is...
Daniel Yokomizo
daniel_yokomiso
Offline Send Email
Jun 1, 2008
7:59 pm
10874
... […] ... No, I don't think so. ... Oh, certainly they're important, and I'd strongly agree that many visible "REST" APIs are woefully insufficient with...
Josh Sled
joshsled
Offline Send Email
Jun 1, 2008
9:33 pm
10875
Rasta automatically returns an error message in whatever is in the Accept: header, using hte request media type as a differenciating factor only when there's a...
Sebastien Lambla
serialseb
Offline Send Email
Jun 2, 2008
11:21 am
10876
Hi all, I just posted this article and I thought it might be of interest: http://blog.arc90.com/2008/06/building_restful_web_apps_groovy_restlet_part_1.php ...
Avi Flax
avi4now
Offline Send Email
Jun 4, 2008
4:32 am
10877
Hi All, I have been far for a long time....i have a small clarification .. WHAT IS THE DIFFERENCE BETWEEN REST AND SERVLET.............. can any one explain me...
vikranth katanguri
kvikranth
Offline Send Email
Jun 4, 2008
2:51 pm
10878
Hi Vikranth, REST is an architectural style and Servlet is a Specification of Sun to implement web applications. If you want to build Restful web applications,...
Stephan Koops
stephan.koops
Offline Send Email
Jun 4, 2008
2:54 pm
10879
Any opinions on this among those who have designed previous reliable HTTP protocols? (Or anybody else?) http://wiki.secondlife.com/wiki/Certified_HTTP_Project ...
Bob Haugen
bob.haugen@...
Send Email
Jun 5, 2008
4:14 pm
10880
This thread is old (I am only just catching up on rest-discuss), but I had to respond to this as I think the crucial point wasn’t made by anyone else. ... ...
Aristotle Pagaltzis
a22pag
Offline Send Email
Jun 8, 2008
8:16 pm
10881
... I don’t see any problem with it. However, I also see no problem with your proposal to use 202 to return a document requesting confirmation as long as the...
Aristotle Pagaltzis
a22pag
Offline Send Email
Jun 8, 2008
8:30 pm
10882
... Aristotle, I think 202 isn't right here. It would mean the request is accepted, but to be done later on, not that it requires further intervention. There...
Bill de hOra
bdehora
Offline Send Email
Jun 9, 2008
10:55 am
10883
... Oh. You are right. I hadn’t thought that through. 202 implies that the server may later successfully perform the requested operation on its own, which is...
Aristotle Pagaltzis
a22pag
Offline Send Email
Jun 9, 2008
7:32 pm
10884
Hi, how should I model something, if I need a 5th method, but there are only GET, POST, PUT and DELETE?Example: I want to deactivate a user in a user or...
Stephan Koops
stephan.koops
Offline Send Email
Jun 10, 2008
7:35 am
10885
Stephan Koops wrote (in ... There are at least 27 HTTP methods that have public descriptions. Other methods are in private use. I do not know where you get the...
Etan Wexler
etan_wexler
Offline Send Email
Jun 10, 2008
1:00 pm
10886
I've come to see pretty URLs as part of a resource-oriented system, although this is not strictly true, of course. That I've been using Ruby on Rails for...
Michael Schuerig
mschuerig
Offline Send Email
Jun 10, 2008
1:53 pm
10887
... Just to clear (or complicate ;) things up you can use other methods (e.g. WebDAV methods), as long as they are well defined. Usually though we use just the...
Daniel Yokomizo
daniel_yokomiso
Offline Send Email
Jun 10, 2008
1:55 pm
10888
When I want to track a user throughout multiple requests (session) without using a cookie, I use HTTP Authentication. I will point out that most of the time I...
mike amundsen
mamund
Offline Send Email
Jun 10, 2008
2:09 pm
10889
... You can do whatever you want! You can use a POST if you want. Just make sure that this is coded in via a resource which is GETtable. That is you don't hard...
dev
bertie_woost...
Offline Send Email
Jun 10, 2008
6:05 pm
10890
Hi Stephan, ... generally, when you think you need more methods, what you actually want is more resources. Remember that there is no requirement for resources...
Aristotle Pagaltzis
a22pag
Offline Send Email
Jun 10, 2008
9:46 pm
10891
... I generally prefer `application/x-www-urlencoded`; in this example, that would make the entity `active=1` or `active=0`. ... No, they’re not: they depend...
Aristotle Pagaltzis
a22pag
Offline Send Email
Jun 10, 2008
10:10 pm
10892
... I think you should start by questioning whether you need sessions in the first place. What data are you storing in them and why does that data not deserve...
Aristotle Pagaltzis
a22pag
Offline Send Email
Jun 10, 2008
10:16 pm
10893
... It’s easy to abuse, and the fact that the HTML subset of HTTP has no other method for affecting server state does not help with this. But not only does...
Aristotle Pagaltzis
a22pag
Offline Send Email
Jun 10, 2008
10:27 pm
10894
... When I have a *user* interface where some resources need authenticated access, then I need some kind of session, don't I? Michael -- Michael Schuerig ...
Michael Schuerig
mschuerig
Offline Send Email
Jun 10, 2008
10:33 pm
10895
... In this case (deactivate) I think you'll find the user has a lifecycle and therefor there's a state machine implicit in the domain. Once that's captured it...
Bill de hOra
bdehora
Offline Send Email
Jun 10, 2008
10:58 pm
10896
... Yeah I know. I just added that cos I didn't have the energy to fight with everyone else on this. I have seen too many discussions on this list where saying...
dev
bertie_woost...
Offline Send Email
Jun 10, 2008
11:10 pm
10897
Michael Schuerig wrote (in ... When you have a user interface in which access to some resources requires authentication (and, presumably, authorization), there...
Etan Wexler
etan_wexler
Offline Send Email
Jun 10, 2008
11:25 pm
10898
... Not necessarily. If you want to be purely RESTful, you'd strive to use HTTP authentication for such things, but practically that's tough. Often,...
Josh Sled
joshsled
Offline Send Email
Jun 10, 2008
11:29 pm
10899
... My point is that PUT has a well defined semantics, while activating/deactivating a resource may have different semantics. After sending "PUT...
Daniel Yokomizo
daniel_yokomiso
Offline Send Email
Jun 10, 2008
11:41 pm
10900
... [snip] ... Authentication information is usually enough. Michael -- Michael Schuerig mailto:michael@... http://www.schuerig.de/michael/...
Michael Schuerig
mschuerig
Offline Send Email
Jun 11, 2008
12:26 am
Messages 10871 - 10900 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