Tagged Questions
23
votes
5answers
3k views
Actual examples for HATEOAS (REST-architecture)
as everyone may have noticed, there are lot of fake/rudimentary REST-APIs in the wild (which implement a HTTP-API and call it REST without following the hypertext-as-the-engine-of-application-state ...
14
votes
6answers
2k views
Is That REST API Really RPC? Roy Fielding Seems to Think So
A large amount of what I thought I knew about REST is apparently wrong - and I'm not alone. This question has a long lead-in, but it seems to be necessary because the information is a bit scattered. ...
9
votes
3answers
489 views
HATEOAS: absolute or relative URLs?
In designing a RESTful Web Service using HATEOAS, what are the pros and cons of showing a link as a complete URL ("http://server:port/application/customers/1234") vs. just the path ...
8
votes
1answer
306 views
Link Relations in JSON Representations
I'm designing a RESTful API based on JSON representations. In order to comply with HATEOAS, I use links between resources extensively. Therefore, I followed this suggestion for serializing links in ...
6
votes
1answer
344 views
Spring MVC, REST, and HATEOAS
I'm struggling with the correct way to implement Spring MVC 3.x RESTful services with HATEOAS. Consider the following constraints:
I don't want my domain entities polluted with web/rest constructs.
...
6
votes
3answers
699 views
Connectedness & HATEOAS
It is said that in a well defined RESTful system, the clients only need to know the root URI or few well known URIs and the client shall discover all other links through these initial URIs. I do ...
6
votes
3answers
794 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
1answer
301 views
On REST: WADL or not IDL, is the following approach right?
This question is a bit long, please bear with me.
In REST, i think we should not need WADL or any IDL. But rather something that would implicitly cover its concept. The way I think about it is when ...
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 ...
5
votes
5answers
931 views
REST Client Implementation Embracing HATEOAS Constraint?
Does anybody know of an implementation of a REST client that embraces the constraint of Hypermedia as the Engine of Application State (HATEOAS)?
The Sun Cloud API seems to be a good candidate, ...
4
votes
2answers
72 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 ...
4
votes
4answers
329 views
REST and URI Caching
As I understand it, using a hypertext-driven RESTful Web service, a client is not supposed to know anything about server URI layout except for a couple of well-known entry points. This is supposed to ...
3
votes
2answers
140 views
does REST discoverability and HATEOAS imply that you can change URIs?
I'm trying to clarify a concept related to REST discoverability - that is whether or not satisfying the HATEOAS constraint for a RESTful service means that now the URIs can change, because they are ...
3
votes
2answers
166 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 ...
3
votes
4answers
350 views
Does HATEOAS imply that query strings are not RESTful?
Does the HATEOAS (hypermedia as the engine of app state) recommendation imply that query strings are not RESTful?
Edit: It was suggested below that query strings may not have much to do with state ...
2
votes
2answers
120 views
When serving responses from a REST API with the hypermedia constraint, how to indicate to client which HTTP method(verb) to use?
I think I have a pretty good grasp on the tenets of a RESTful architecture but I'm not there yet.
The part that I can't seem to figure out is how do the clients become aware of which HTTP methods are ...
1
vote
1answer
102 views
Need help with generating links for REST clients (HATEOAS)
I am working on developing a JAX-RS webservice using RestEasy 2.2.2 to be deployed on Tomcat 7. The webservice returns JSON (via Jackson) to the clients. I got it working so far but I am not sure how ...
1
vote
2answers
136 views
Automatically populate HATEAOS links using JAXB or something similar?
Let's say I'm following HATEOAS and using hypertext in my XML. Something like this:
/customer/32
<Customer>
<FirstName>Joe</FirstName>
<LastName>Smith</LastName>
...
0
votes
1answer
40 views
REST: What is a good Hypermedia and Resource Caching Strategy?
If I have a RESTful service that has discoverable resources via an endpoint such as:
Request:
GET http://acme.org/someInfo
Response:
HTTP/1.1 200 OK
Content-Length: ...
Content-Type: ...
0
votes
1answer
36 views
How to create link relation for POST end point?
While building a RESTful API of my web service I'm trying to give clients link relations, for example (this is what a GET entry point returns):
<doc>
<links>
<link rel="self" ...