The philosophical answer: RESTful HTTP doesn't have semantics to support BATCH operations. There has been conversations in the IETF about supporting a BATCH method, but it hasn't really gone anywhere. For servers that support HTTP pipelining you can issue multiple asynchronous GET requests, but I don't think this is what your really have in mind.
The more practical solution: GDATA has an implementation of BATCH processing using POST based upon AtomPub. Its completely non-standard but you could potentially implement the protocol on top of RESTlet. Dave On Tue, Feb 2, 2010 at 8:21 AM, Erick Fleming <[email protected]> wrote: > This is more of a REST question, but is anyone using Restlet to handle batch > operations? > For example: given the following resource: /api/blog/1/posts. I would like > to make client-side changes, then update them on one call. > I realize this is very SOAP like, but was wonder how Restlet users are > handling these sorts of Use Cases. > -- > Erick Fleming > ------------------------------------------------------ http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=2444223

