Tagged Questions

12
votes
5answers
846 views

What are the best/common RESTful url verbs and actions?

hi folks, I'm trying to find some info on the best and most common RESTful url actions. for example, what url do you use for displaying the details of an item, for editing the item, updating, …
10
votes
7answers
2k views

RESTful URL design for search

I'm looking for a reasonable way to represent searches as a RESTful URLs. The setup: I have two models, Cars and Garages, where Cars can be in Garages. So my urls look like: /car/xxxx xxx == car …
9
votes
6answers
1k views

What is the best approach for building an iphone client for a rails app?

I have a fairly standard rails app and would like to be able to access the basic CRUD (Create, Update, Delete) operations as well as queries I have added, from an iPhone app. Rails provides the REST …
9
votes
3answers
670 views

Inadvertent Session Hijacking Issue With Restful Authentication

I'm using the current version of restful_authentication that is found on github and I'm having a bunch of strange session issues. The server seems to be somehow assigning sessions to users it …
8
votes
7answers
2k views

Recommendations of Python REST (web services) framework?

Is there a list somewhere of recommendations of different Python-based REST frameworks for use on the serverside to write your own RESTful APIs? Preferably with pros and cons. Please feel free to add …
8
votes
3answers
1k views

REST and authentication variants

Hi, I am currently working on a REST library for .net, and I would like to hear some opinions about an open point I have: REST and authentication. Here is an example of an RESTful interface used …
7
votes
4answers
117 views

RESTful PUT and DELETE and firewalls

In the classic "RESTful Web Services" book (O'Reilly, ISBN 978-0-596-52926-0) it says on page 251 "Some firewalls block HTTP PUT and DELETE but not POST." Is this still true? If it's true I have to …
7
votes
3answers
220 views

Whats the difference between REST & RESTful…

What's the difference between a REST system and a system that is RESTful? From a few things I've read most so called REST services are actually RESTful services. So what is the difference between the …
7
votes
9answers
374 views

What is the best way to design a HTTP request when somewhat complex parameters are needed?

I have some web services that I am writing and I am trying to be as RESTful as possible. I am hosting these web services using a HTTPHandler running inside of IIS/ASP.NET/SharePoint. Most of my …
7
votes
3answers
206 views

Should I RESTify my RPC calls over HTTP?

We have HTTP webservices that are RPC. They return XML representing the object the either retrieved or created. I want to know the advantages (if any) of "restifying" the services. POST …
7
votes
4answers
563 views

Django and Restful APIs

I have been struggling with choosing a methodology for creating a RESTful API with Django. None of the approaches I've tried seem to be the "silver" bullet. WAPI from http://fi.am is probably the …
7
votes
3answers
985 views

How to remove thie “.svc” extension in RESTful WCF service?

In my knowledge, the RESTful WCF still has ".svc" in its URL. For example, if the service interface is like [OperationContract] [WebGet(UriTemplate = "/Value/{value}")] string GetDataStr(string …
7
votes
5answers
2k views

Rest clients for Java?

With JSR 311 and it's implementations we have a powerful standard for exposing Java objects via Rest. However on the client side there seems to be something missing that is comparable to Apache Axis …
6
votes
4answers
327 views

RESTful delete strategy

Let's say I have a resource that can have two different behaviors when delete is called The resource is deleted. The resource is moved to the recycle bin. How would model it in a REST compliant …
6
votes
3answers
518 views

RESTful URL design - how to query using OR between parameters

How would you design a RESTful query to support OR operand between parameters. Let's say my resource has two fields field1 & field2. How would you design the URL to enable the following query: …

1 2 3 4 5 18 next
15 30 50 per page