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 4795 - 4824 of 14028   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4795
Hello Thinking of a REST interface to a trading system. I can get my head around GET /trades to get a list of trades GET /trade/123 to retrieve a specific...
scottgregory@...
scottgregory
Offline Send Email
Feb 1, 2005
8:01 pm
4796
... Gack! You ought not send an entity in a GET. How about POSTing your trade to some URI, and the server returns the URI of the resource containing your price...
Hugh Winkler
hwinkler99
Online Now Send Email
Feb 1, 2005
8:13 pm
4797
Scott, ... What about GET /pricingService?trade=http://example.org/trade/123 or POST /pricingService <pricing> <trade><!-- representation of trade goes here...
Jan Algermissen
algermissen1971
Offline Send Email
Feb 1, 2005
8:17 pm
4798
Hi. I'm working on an application that exposes some kind of "item" to its users (the actual kind of item isn't important). I want users to be able to interact...
Jason Diamond
injektilo12
Offline Send Email
Feb 1, 2005
11:44 pm
4799
... I've run up against the same problem. I think that we're up for a few years of hacking better REST support into browsers, e.g by creating plugins to allow...
Lucas Gonze
lucas_gonze
Offline Send Email
Feb 2, 2005
12:18 am
4800
... Did you mean text/xml? I wasn't implying, since browsers can't do anything except POST application/x-www-form-urlencoded or multipart/form-data, that I...
Jason Diamond
injektilo12
Offline Send Email
Feb 2, 2005
12:25 am
4801
... Hmm...could it really be that I am *not* the last person on earth having heard about XMLHTTP in JavaScript?? http://www.google.de/search?q=xmlhttp HTH, Jan...
Jan Algermissen
algermissen1971
Offline Send Email
Feb 2, 2005
12:28 am
4802
... Do you know about this: http://www.mozilla.org/xmlextras/ I'm fairly sure I remember doing a PUT with this. It's not platform neutral but IE has something...
Nic Ferrier
nferrier_tap...
Offline Send Email
Feb 2, 2005
12:34 am
4803
... This will probably elicit mention of XMLHttpRequest. It is possible to use it in the browser to make PUT and DELETE reuests, of course. But I'm looking for...
Jason Diamond
injektilo12
Offline Send Email
Feb 2, 2005
12:36 am
4804
... It might be, but I can't help you with that. :) XMLHTTP is getting there but not there yet. It does you no good for older browsers, browsers without...
Lucas Gonze
lucas_gonze
Offline Send Email
Feb 2, 2005
12:37 am
4805
... to ... I'm ... For completeness and if you do decide to use Javascript then I recommend looking at Sarissa (http://sarissa.sourceforge.net/doc/) "... a...
Robert Leftwich
digital_rtl
Offline Send Email
Feb 2, 2005
1:57 am
4806
... One way of looking at this issue, and its not the only way, is that your URIs identify items of interest and by adding a query to the URI you ask a...
Donald Strong
illyrian_au
Offline Send Email
Feb 3, 2005
3:06 am
4807
... My belief is that these will always diverge, due to the different access patterns. However, with more advanced clients (rather than older browsers) that...
S. Mike Dierken
mdierken
Offline Send Email
Feb 3, 2005
5:57 am
4808
... Actually, IE invented it. But Mozilla has something sort of similar. ;)...
S. Mike Dierken
mdierken
Offline Send Email
Feb 3, 2005
6:01 am
4809
... You shouldn't need to POST, you should be able to just GET. I think this is the crux of the issue that causes me to believe that the set of resources for a...
S. Mike Dierken
mdierken
Offline Send Email
Feb 3, 2005
6:14 am
4810
On Wed, 2 Feb 2005 22:13:23 -0800, "S. Mike Dierken" ... I have found it helpful to think of the editable representation as being a subordinate resource of the...
Vincent D Murphy
johnfoobar1
Offline Send Email
Feb 3, 2005
8:42 am
4811
Panic Software (makers of fine Mac software) have an apparel store. It has a very impressive drag and drop shopping cart done with Javascript/DHTML. The...
Vincent D Murphy
johnfoobar1
Offline Send Email
Feb 3, 2005
3:55 pm
4812
... This is similar to how I do it. Say you have a resource: some-uri-space/sub-space/xyz I would have another resource (some-uri-space/edit/xyz) that would ...
Sandeep Shetty
sandeep.shetty@...
Send Email
Feb 3, 2005
4:09 pm
4813
... Gorgeous! Mark. -- Mark Baker. Ottawa, Ontario, CANADA. http://www.markbaker.ca...
Mark Baker
gonga_thrash
Offline Send Email
Feb 3, 2005
5:05 pm
4814
... Yes....I just noticed that the cart state is persistent even when I close the page's window.... I am impressed. When I open the page twice and add items to...
Jan Algermissen
algermissen1971
Offline Send Email
Feb 3, 2005
5:18 pm
4815
Hi Vincent and REST list: ... Excuse my misunderstandings, I'm new to REST, but what does REST principles have to do with state being maintained in the server ...
Diego Sevilla Ruiz
diegosevillaes
Offline Send Email
Feb 3, 2005
5:28 pm
4816
... REST has a whole lot to do with appropriate state management. Specifically, see Secs 5.1.3 and 5.1.4 of Dr. Fielding's Dissertation [1]. Certainly,...
Josh Sled
joshsled
Offline Send Email
Feb 3, 2005
6:49 pm
4817
... Vincent> The point though, is that this thing is completely Vincent> RESTful. The browser manages all the state on the Vincent> client-side, so you don't...
Berend de Boer
berenddeboer
Online Now Send Email
Feb 3, 2005
7:19 pm
4818
... Vincent> The point though, is that this thing is completely Vincent> RESTful. The browser manages all the state on the Vincent> client-side, so you don't...
Berend de Boer
berenddeboer
Online Now Send Email
Feb 3, 2005
7:22 pm
4819
... I was initially POST-ing because GET-ing was returning the non-editable representation of the resource. I needed something to help my server code...
Jason Diamond
injektilo12
Offline Send Email
Feb 3, 2005
8:48 pm
4820
... Interesting. Your edit form resources are not subordinates to the actual resources you're editing. This has the advantage that it makes it easy to exclude...
Jason Diamond
injektilo12
Offline Send Email
Feb 3, 2005
8:54 pm
4821
On Fri, 04 Feb 2005 08:22:24 +1300, "Berend de Boer" <berend@...> ... OK, maybe I should have added the caveat "in principle" to the statement that this...
Vincent D Murphy
johnfoobar1
Offline Send Email
Feb 3, 2005
9:02 pm
4822
... [...] ... and other operations? As interesting an approach as this may be, it is a Bad Idea [TM] to reify HTTP / WebDAV methods, such as DELETE and MOVE,...
Elias Sinderson
elias95060
Offline Send Email
Feb 3, 2005
9:06 pm
4823
... This actually relates to a question I have been having in my head for some time: IMHO the form is just another representation of the resource and conneg ...
Jan Algermissen
algermissen1971
Offline Send Email
Feb 3, 2005
9:13 pm
4824
On Thu, 03 Feb 2005 12:46:46 -0800, "Jason Diamond" ... Well, URIs are cheap, so maybe you should distinguish between two URIs rather than two methods. This is...
Vincent D Murphy
johnfoobar1
Offline Send Email
Feb 3, 2005
9:21 pm
Messages 4795 - 4824 of 14028   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