Tagged Questions
6
votes
3answers
795 views
RESTful web services: trying to achieve HATEOAS with custom XML
I am working on an enterprise system that will utilise a RESTful web service between mobile clients and a central server. As RESTful as possible, let's say.
My question relates to HATEOAS (hypermedia ...
5
votes
3answers
536 views
Does anyone know of an example of a RESTful client that follows the HATEOAS principle?
So by now I'm getting the point that we should all be implementing our RESTful services providing representations that enable clients to follow the HATEOAS principle. And whilst it all makes good ...
4
votes
2answers
73 views
GWT Rich Internet Application (RIA) and REST HATEOAS - how compatible are they?
I am in the process of developing a rich internet web application that communicates to a (Java) back-end via web services. I have prototyped a user interface in both Flex/Flash and GWT/Javascript and ...
3
votes
2answers
168 views
How can I use HATEOAS and Query Parameters for RESTful search?
I would like to design a RESTful search URI using query parameters. For example, this URI returns a list of all users:
GET /users
And the first 25 users with the last name "Harvey":
GET ...