0
votes
0answers
98 views

How can I use Activity Streams in my application. When are they most useful? [closed]

I might come across as a complete noob asking this. I have been reading about Activity Streams (more info on activitystrea.ms) and how they can soon become the de facto protocol for creating and ...
5
votes
1answer
308 views

Why we are using atoms in rest?

I've seen many times xml in rest web services, having the following format: <author> <atom:link rel="author" type="application/xml" href="http://www.../author/1"/> </author> ...
0
votes
1answer
187 views

Add Atom Link in REST Service

I am creating a REST Service using .Net 4.0 and MVC4 and I want to provide atom link for the other resources in the method response. So Response should look like: <Customers ...
0
votes
1answer
138 views

Difference between Atom Service and REST Service

Can somebody explain the difference between an ATOM Service and a REST Service? ATOM Service format is an XML based data format but wondering how is it different from a REST Service. Thanks.
2
votes
1answer
311 views

Utility of Atom Links with RESTEasy

this is my first post here, so be nice please. I'm actually learning RESTEasy (JBoss), and I'm having some trouble of understanding the utility of putting atom links in my web responses. Let me ...
3
votes
1answer
410 views

REST API versioning when using Atom for resource collections

I know this is something that has been discussed over and over, and I have done extensive research to get where I am so far, but can't seem to get over the final hurdle. I am designing a custom REST ...
0
votes
2answers
176 views

Atom feed basics

I want to provide a atom feed. My HttpServlet writes the following stuff (copied from wikipedia): <?xml version="1.0" encoding="utf-8"?><feed ...
3
votes
2answers
2k views

Hypermedia with Jersey using Atom

Every book on REST uses <atom:link href="..." rel="..."> to define Hypermedia in RESTful apps; but Jersey (with the use of JAXB) do not seems to have this support. I've tried @XmlSchema in ...
1
vote
2answers
29 views

Would an Atom based feed work for a “resource change log”?

I am working on an api requiring a service that exposes a change log for a certain type of resources. I could roll my own format but i'd like to leverage existing standards where possible. Basically ...
1
vote
1answer
638 views

Custom content types: XLink vs. Atom

I'm trying to design a RESTful interface for a filesystem-like web service. To provide hyperlinkability among the various resources (files, directories, etc.), I thought I would use XLink. However, ...
5
votes
3answers
363 views

HTTP Response 412 - can you include content?

I am building a RESTful data store and leveraging Conditional GET and PUT. During a conditional PUT the client can include the Etag from a previous GET on the resource and if the current ...
2
votes
1answer
81 views

Can Atom be used for things besides syndication feeds?

Purely in terms of its conceptual model, is the purpose of Atom (and RSS) only to provide a time-sequential series of frequently-updated items, such as "most recent blog posts" or "last twenty SVN ...
1
vote
3answers
548 views

ATOM for messaging service for “enterprise”

I went to Jim Webber presentation and in the middle of his apresentation he stated that ATOM is a good replace for JMS in many cases. Since JMS is a messaging service, I'm curious about that. Are you ...