Tagged Questions

Representational state transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web.

learn more… | top users | synonyms

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
536 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
548 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
290 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
313 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
667 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
138 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
268 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
247 views

Is it possible to have route multiple parameters in asp.net mvc using maproute

I want a user to be able to access objects (could be JSON or XML) using a restful syntax rather than having to use query strings. So instead of ...
3
votes
3answers
154 views

How to get IIS6 to recognize pathinfo routes instead of returning “404 Undescribed” error?

I am developing a RESTful web application in PHP. What I have got is: on the test server, Windows 7 / Apache 2.2 / PHP 5.2.9 (mod_php) on the production server, Windows Server 2003 / IIS6 / PHP ...
3
votes
2answers
566 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
67 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
1answer
41 views

OpenRasta - Providing Filter, Sorting and Paging for List Resources

We are creating a REST API using OpenRasta and apart from regular GET, POST, PUT and DELETE on all resources, we are also providing GET on resources with plural names. So a consumer of the API can ...
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
3answers
156 views

How to secure are MVC RESTful Urls from Hacking?

I read an interesting article recently on the CitiGroup Hacking incident http://www.nytimes.com/2011/06/14/technology/14security.html?_r=2&pagewanted=1&ref=technology This got me thinking, ...
2
votes
1answer
188 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
114 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
1answer
213 views

How to reformat URLs to be more restful (from …/?id=123 to …/123)?

Currently I have pages accessed via: www.foo.com/details.html?id=123 I'd like to make them more restful-like, such as by the following: www.foo.com/details/123 I'm using Google App Engine. ...
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
118 views

appengine python `PUT/DELETE` working on localhost but not in server

Why my application (appengine+python) PUT/DELETE working on localhost (response status code 200) but not in server (appspot) (respone with status code 0) Thanks. app.yaml version: 1 runtime: ...
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
3answers
47 views

How to make restful calls from server?

Hi i have a restful project and I make rest calls from client side. But for a case I need to make restful calls from server side. How can i do that?
1
vote
0answers
119 views

Special characters in WCF web API URLs

I have a web service which uses the WCF web api to create RESTful service. This serivce expects many different values in the url path seperated with a comma. This method works perfectly for simple ...
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
334 views

how to access RESTful parameters from ZK GenericForwardComposer when using Spring MVC

i'm working on a project using zk and spring.Basically Spring manages object life-cycle of the objects.i've planned to use cute url.for that i used ZK MVC pattern and added Spring 3 MVC front ...
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
308 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
149 views

Rails: Named route from resources takes me to show page instead of delete page

I am using resources :users in routes.rb. This provides the following paths as rake routes unveils. users GET /users(.:format) {:action=>"index", :controller=>"users"} ...
1
vote
1answer
642 views

spring 3 mvc requestmapping dynamic param problem

I have the following code which works fine with http://localhost:8080/HelloWorldSpring3/forms/helloworld but i want to have url have some thing like this ...
1
vote
3answers
359 views

Implement restful url in .net where service is implemented using IHTTPHandler

I want to implement a restful service in ASP.NET. I want it to be compatible with .Net 2.0 and IIS 5+. I am constrained to not use ASP.NET MVC or REST starter kit. By reading on internet I have ...
1
vote
4answers
132 views

Is a RESTful url valid without ids between objects?

I have two RESTful API design questions. Let's say I have a fruitstand web app. I want to return information about all the fruits I carry and the counts those fruits, and I do it with: ...
1
vote
1answer
262 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
8answers
1k views

Alternative to <a href=“#”> when the anchor tag only triggers a jQuery action without redirecting the user?

I have numerous anchor tags on my page that only trigger jQuery actions on the same page. The don't redirect the user to another location, which is the normal expected behavior of an anchor tag. I ...
1
vote
2answers
173 views

Problem with using the REST-ful link_to while using it in a mailer

I strongly feel its a silly error and I'm somehow not able to see through it. I'm trying to use this piece of code in the view of my mailer. <p><%= link_to 'here', unsubscribe_path(:email ...
1
vote
4answers
225 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
361 views

Multiple query parameter RESTful URL with .htaccess

I would like to use following RESTful URL for a web site I'm working on. http://mysite.com/Products/category=bags&colours=black can anyone please tell me how to achieve this with .htaccess? ...
1
vote
3answers
300 views

MVC:RESTful routing with nested urls, when entities are not really nested

I 'm really having a hard time with the RESTful paradigm + nested urls. I have asked a question that lead me to where I am right now here. My Domain is roughly this: there are schools, courses of a ...
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
3answers
915 views

Nested Routes and Parameters for Rails URLs (Best Practice)

I have a decent understanding of RESTful urls and all the theory behind not nesting urls, but I'm still not quite sure how this looks in an enterprise application, like something like Amazon, ...
1
vote
2answers
96 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
210 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
457 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
44 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 ...

1 2