Tagged Questions

15
votes
9answers
5k views

How to create REST URL's without verbs?

I'm struggling to determine how to design restful URLs. I'm all for the restful approach of using URLs with nouns and not verbs don't understand how to do this. We are creating a service to ...
9
votes
6answers
1k views

RESTful POSTS, do you POST objects to the singular or plural Uri?

Which one of these Uris would be more 'fit' for receiving POSTS (adding product(s))? Are there any best practices available or is it just personal preference? /product/ (singular) or /products/ ...
6
votes
3answers
642 views

URL design for an API

I'm working on a private apis for our backend. I have collections that have associations. Each collection can be requested, paginated, you can also ask for the associations and paginate this ...
6
votes
1answer
537 views

Best practices on using URIs as parameter value in REST calls

I am designing a REST API where some resources can be filtered through query parameters. In some cases, these filter values would be resources from the same REST API. This makes for longish and pretty ...
4
votes
6answers
551 views

Do REST API URLs have to look like this?

Is it true that to implement a RESTful API, one has to implement a URL structure that looks like this http://example.com/post/ http://example.com/post/123 where the /123 would be used for edit, ...
4
votes
3answers
3k views

How do I create a Spring 3 + Tiles 2 webapp using REST-ful URLs?

I'm having a heck of a time resolving URLs with Spring 3.0 MVC. I'm just building a HelloWorld to try out how to build a RESTful webapp in Spring, nothing theoretically complicated. All of the ...
4
votes
3answers
291 views

REST services - exposing non-data “actions”

I understand how to use REST for doing general entity interactions - using urls names to map to entities and the HTTP verbs to map to actions on those entities. But what is the generally accepted way ...
4
votes
5answers
314 views

is restful meant for web services only OR for both web services AND web pages?

I read a lot of Restful tutorials for PHP. (I don't want to go in depth into why I am not using RoR. It is due to the team being more familiar with PHP) Because we are planning for future expansion ...
4
votes
2answers
672 views

Why does including an action verb in the URI in a REST implementation violate the protocol?

I'm finding it necessary to understand why including action verbs in the URI violates the REST protocol for URI syntax? When I read the following article, I sense that too many people are making too ...
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
1answer
271 views

how to specify a range of data or multiple entities in a restful web-service

To access an instance of a User in a restful web-service the url is structured as shown in the curl request below: curl -v -X GET -s "$BASE_URL/User/${customer_id}.json" If I wanted to specify all ...
3
votes
2answers
568 views

Is it hacky to manually construct JSON and manually handle GET, POST instead of using a proper RESTful API for AJAX functionality?

I started building a Django app, but this probably applies to other frameworks as well. In Backbone.js methods that call the server (fetch(), create(), destroy(), etc.), should you be using a proper ...
3
votes
2answers
1k views

How do you handle RESTful URL parameters in a Ruby on Rails application?

I am dealing with a very simple RESTful Rails application. There is a User model and I need to update it. Rails coders like to do: if @user.update_attributes(params[:user]) ... And from what I ...
2
votes
1answer
59 views

REST API design

I'm writing a REST API and i want some feedback. I will have one resource called Items. I want it to be accessed publically or it can be privated (only the user can see it). My First idea was to put a ...
2
votes
2answers
68 views

Understanding RESTful. URIs for complex actions

I'm trying to build a RESTful service, and I've faced with some problems. I'll describe these problems (questions) with an example of an imaginary RESTful service. For example, I need a "News" ...
2
votes
2answers
46 views

How to invalidate 'other' URIs in case of a PUT request?

A resource can be identified by multiple URIs. e.g. /person/1234 /person/list?fname=John /person/list?lname=Doe all of the above might contain a resource: Person - id: 1234 fname: John lname: Doe ...
2
votes
1answer
191 views

How do I find/get my relative paths when using restful java and corresponding JSPs

Say I have a Contoller.java that has these 3 functions to direct traffic to the 3 jsps (index.jsp, create.jsp, show.jsp) public class Controller { @GET @Path("/index") public void ...
2
votes
2answers
117 views

Make a RESTful API call that updates many related entities

We have a model that looks like this Login <- Email Addresses <- Person -> Teen And a stored procedure which takes some properties from teen, some from person, and some from Login, and ...
2
votes
3answers
72 views

RESTful design of URLs for widgets owned by users

My RESTful API always has authentication so all calls are authenticated for a particular user. Which is a better RESTful design of URLs over the HTTP protocol? Remember that the user id 3 is already ...
2
votes
4answers
3k views

Restful URLs with data in query string or request body?

What's the rule of thumb for passing data in a REST URL in the query string vs. the body of a request? Ie: You're creating a service to add hockey players. You could go with: PUT /players { ...
1
vote
1answer
28 views

How to properly expose boolean search functions when designing a RESTful API?

I'm designing a RESTful API for a search function that looks something like this: http://example.com/books/?author=John+Smith&title=Brain+Surgery+For+Dummies Looking at this URI, I don't ...
1
vote
1answer
65 views

How should a resource edit path looks like on a restful web app?

Do you know how a resource edit path should looks like on a restful web app? Can't find any serious reference but the Ruby on Rails way that it's just a convention. I'm not talking about the put ...
1
vote
1answer
128 views

What is the preferred Restful URI design to distinguish between a collection and singleton resource?

I have a URI structure which is hierarchical for a particular data set: /Blackboard/Requirement/{reqID}/Risk/{riskId}/MitigationPlan/{planId} If the url is split at various IDs you can get that ...
1
vote
1answer
118 views

RESTful service and user maintenance - url structure and commands question

I'm designing restful service and one of the entities to maintain - user accounts. I'm doing it in .NET and using membership provider. Here is what I have: /users/ GET - returns list of users ...
1
vote
1answer
312 views

Avoiding the endless loop in JSP servlet mapping

I've got this issue, recently I read about the REST arquitecture and it makes a perfect sense, so I'd like to achieve a RESTful web application. Now, I'm following the Front Controller pattern that ...
1
vote
1answer
264 views

spring rest post?

@ModelAttribute("user") @RequestMapping(value = "/", method = RequestMethod.POST) public User saveUser( @RequestBody User user ) throws IOException { logger.debug(user); return user; } ...
1
vote
4answers
226 views

What's the best RESTful method to return total number of items in an object?

I'm developing a REST API service for a large social networking website I'm involved in. So far, it's working great. I can issue GET, POST, PUT and DELETE requests to object URLs and affect my data. ...
1
vote
1answer
1k views

RESTful URLs for a search service with an arbitrary number of filtering criteria

I want to build a RESTful web service that implements a search interface for a database of biological data. A typical search request could involve a dozen or so attributes of the data. For ...
1
vote
2answers
98 views

Three Step Buyonline The RESTful way

We are re-developing our buyonline functionality and we are doing it the RESTful way. The process is a three step one and the customer is asked to enter data at each step. Let's say the three URL's ...
1
vote
3answers
213 views

How to “lazy load” in a RESTful manner?

Given this service to get information about a hotel: > GET /hotel/{id} < HTTP/1.1 200 OK < <hotel> < <a>aaa</a> < <b>aaa</b> > ...
1
vote
3answers
461 views

How to obtain REST resource with different finder “methods”?

Let's say you had a /companies resource that allowed clients to lookup public companies and you wanted clients to be able to lookup companies by Ticker, Location, and Location and industry Would you ...
0
votes
1answer
46 views

Are list parameters supported in OpenRasta? how they should be sent?

If I have a resource handler method receiving an object list as parameter (int list, string list or any object type list), i.e.: public class TasksCollecionHandler { public ...
0
votes
2answers
35 views

Consume REST service that returns a single value

I am used to consuming Web services via a XMLHttpRequest, to retrieve xml or JSON. Recently, I have been working with SharePoint REST services, which can return a single value (for example 5532, or ...
0
votes
1answer
24 views

Defining RESTful from clients perspective

Can I just assume if I need to do a HTTP POST to a url to get back a string of data (JSON or otherwise) that it is a RESTful API? Or is there another term for a general api like this? I understand ...
0
votes
1answer
97 views

Validate/Change Password via REST API

I want to change a user password via a REST API. This is not a forgotten or reset password function, but a logged in user wanting to change their password. The form requires the current password, the ...
0
votes
2answers
23 views

Multi-lingual REST resources - URL naming suggestions

Is there a REST best practice for GETting resources in different languages. Currently, we have www.mysite.com/books?locale=en I know we can use the accept-language header but is it better for us ...
0
votes
2answers
88 views

HTTP POST with URL parameters - what should the server reply with?

I'm working on designing a RESTFul service which provides CRUD operations for various domain objects. One such object is Person. We have the following services: GET /person/list?type=Infant ...
0
votes
1answer
32 views

How Would You Design a RESTful Conversion Service?

We are creating a service to perform conversions from one format to another. Examples of conversions are currencies, distances, times, languages, etc. In our case it is geographic points (for example ...
0
votes
1answer
80 views

restful api .. session security

assume an ordering application, user "Ben" would be able to list a specific order by issuing /order/1 now .. before doing that i've authenticated "Ben" (username/password auth) and sent the username ...
0
votes
1answer
45 views

Restful URLs design modeling forum groups and posts

Is my design on modeling forum group and post good enough? Group URL http://www.example.com/groups/soccer Post URL http://www.example.com/groups/soccer/posts/123.html Any better suggestion?
0
votes
0answers
53 views

Restful forums/groups/friends/tags etc from joomla

Are there any solutions that my app could consume forums/friends/groups etc features using joomla through RESTful urls. I found 2 links so far, Plexicloud-JWS :- This seems to supports only core ...
0
votes
0answers
130 views

How to get & parse xml data and pass to UI

I am newbie in Jersey. There is an URL http://www.COMPNYDOMAN.com/interface/?param='123' will return a huge xml data. My jersey rest application would like to get this xml data from the URL, and ...
0
votes
1answer
138 views

changing the parameter value in IparameterInspector WCF RESTful

I am trying to change the value of the parameter in IParameterInspector while doing the validation. The parameters that are string, works fine. But I need int as parameters. and if the parameter is ...
0
votes
0answers
128 views

restful routing in rails3 - please just tell me if I have the right concept here

I have a user. User's can have multiple friends. Selecting a friend is a simple matter of clicking a checkbox though, and the user should be able to set all of their friends on 1 screen. So the ...
0
votes
3answers
115 views

Correct RESTful call for this resource

I'm currently designing a RESTful interface to an existing infrastructure and I'm struggling with one particular aspect. We have a collection of users which can be accessed at /users And elements of ...
0
votes
2answers
177 views

ReSTful design: return an empty object as a template for create new form

My question is straighforward - I think. Currently the following Uris exist: http://someserver/service/item GET returns all items http://someserver/service/item POST creates ...
0
votes
2answers
157 views

RESTful application, want to send SQL query as a read request

I'm working on a RESTful web application. Now I want to extend the read (GET) request to handle SQL-like queries but I was not able to encode them into the URL because of all the special characters (" ...
0
votes
2answers
142 views

URI for RESTful Web Services - Part 2

I'm trying to understand how to construct URIs for RESTful web services. Assume I had a dating site, would the following be correct: domain.com/profiles/ <-- list of profiles ...
0
votes
1answer
142 views

Multiple entity replacement in a RESTful interface

I have a service with some entities that I would like to expose in a RESTful way. Due to some of the requirements I have some trouble finding a way I find good. These are the 'normal' operations I ...
0
votes
1answer
364 views

Spring MVC: Correct Annotation of Controller Method for RESTful URI including ';'

Designing my RESTful API, I would like use following URI http://[HOST]/[PLANET]/[LAT];[LONG] e.g. http://myserver/earth/50.2;29.1 What is the appropiate annotation of a such a method in Spring ...

1 2