Sorry about the slow reply, toydi. I have been caught up reading about current hAtom happenings :) ... GET /foo/bar HTTP/1.1 Host: example.com Accept:...
Following the announcement of the Restlet framework, a discussion started at The Server Side and the need of a PetStore-like comparison between REST and SOAP...
Hi Jerome, ... I'm afraid to comment, because that would sound like I'm volunteering. :-) I do agree that PET store is a wonderful idea though, and have often ...
I need to update several resources without leaving one browser page. I can POST to resources in the same domain using Ajax techniques (I'm using Dojo). But I...
Bob Haugen
bob.haugen@...
Jan 11, 2006 3:11 pm
5648
... To same-domain... POST /help-me-out-in-getting-to/http://«otherdomain»/path/to/real/post/ -- ...jsled http://asynchronous.org/ - `a=jsled;...
... Or you could use the old IFRAME trick and have several FORMs POSTing to different IFRAMEs and use JS to make them all happen. I prefer the WS approach...
I have an application that returns a list of items in response to a url like this: GET http://foo.com/userstuff/items The items get displayed in a UI. The...
... There are several options, and I've listed them in my perceived order of RESTfulness (but we should start getting away from "RESTfulness" as something that...
Mike, I liked your elaboration on this. But I couldn't quite follow you with the 4th approach. (3)is to essentially DELETE the whole resource and add a filter,...
... (essentially, ... http://foo.com/userstuff/items/?ids=a,b,c,d ... horrible either ... grammar that clients can ... ?id=a,b,c,d; ... resource and modify...
(sent the earlier email too soon...) ... Actually, this approach is to consider those four ids to actually /be/ the single resource (there is no 'add a...
Hey RESTafarians, I just discovered REST and really like the idea behind it. At the moment I am mostly developing with PHP5 and I was wondering how I would...
Hey Nikolai, These links should get you started: http://phprestsql.sourceforge.net/tutorial.html#rest-browser ...
Sandeep Shetty
sandeep.shetty@...
Jan 22, 2006 4:07 pm
5658
Hi All, I just wanted to add a bit more to the recent discussion on RESTfully deleting multiple resources. ... WebDAV specifies the behavior of DELETE on...
Hi all, The Restlet project has reached an important milestone. Encouraged by the quality of the feed-back since the first public release, I am happy to ...
I implemented a REST web service for administering account information. I was using a Tomcat server stand-alone. I just installed mod_jk to hook it in with...
... I suggest doing a google search. mod_jk is a servlet interface extension, so I don't know what it supports (and unfortunately I have no time to check ...
Hi, I've been studying the Restlet classes and interfaces. You guys have done a great job! I have one question: The methods that define a Connector are those...
Hi Peter, Thanks for the feed-back. Indeed those methods are common to both Component and Connector interfaces. However, following the REST dissertation, a...
Hi, I am starting the process of developing RESTful services, but I am getting hung up on the definition of which namespace to apply to the concept of a...
... What you want to ask yourself is "what will my client apps do with this data?". Do they need to know the names ("Widget A", "Widget B") associated with...
All our prayers have been answered: "Finally!!! There is an Alternative to the Internet....." http://www.businesswireindia.com/PressRelease.asp?b2mid=9062...
Hi, I would like to track back to its origin the idea to use a shared 'intent semantic' between client and server along with a pure data submission semantic...
http://www.onlamp.com/pub/a/python/2006/02/23/using-rest-with-ajax.html I've got another (more interesting) one in the works about RESTfully using cookies for...
... I've read it on Friday, via a link from ajaxian.com. I had been researching the same thing and I'm 95% finished with my article... I guess you can't always...
... Thanks for the great article. This is the first concrete example I have found anywhere of a non-trivial REST system. Everything else I have seen seems to...
Hi Nic! Enjoyed your article. One comment, Safari's XHR implementation is a little bit broken, PUT and DELETE requests are silently converted to GETs. Cheers ...