2
votes
5answers
36 views
Comparing data with RESTful API
For a website I am working on defining a RESTful API. I believe I got it (mostly) correct using proper resource URIs and proper use of GET/POST/UPDATE/DELETE.
However there is one …
1
vote
4answers
41 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/ (singu …
5
votes
6answers
159 views
What Perl RESTful framework do you recommend?
Hi I'm looking for a Perl RESTful framework that have to :
work under apache2/mod_perl2
be simple
be elegant
be light
be flexible
Am I just dreaming or can I avoid the 'Roll ou …
2
votes
1answer
26 views
What is the best choice for making AJAX calls to a WCF service?
The Microsoft AJAX Library Preview 6 and jQuery provide several ways to make the sorts of calls I need:
Sys.Net.WebRequest (ASP.NET Ajax)
Sys.Net.WebServiceProxy (ASP.NET Ajax)
$ …
4
votes
4answers
57 views
HTTP MODIFY verb for REST ?
As far as I see, there's no RESTful way to apply a modification to a resource. In order to do it, you have to PUT the resource as a whole, overwriting the previous representation. …
0
votes
4answers
49 views
Prevent IllegalStateException when reading from request
I have an interceptor for catching Exceptions and sending emails of this exceptions.
All my struts actions extend CoreController which implements SerlvetRequestAware.
In mail ser …
0
votes
2answers
41 views
Rails routing with date and has many
I've got the following setup:
map.resources :articles
map.resources :users, :has_many => [:articles]
Which is fine as I can do /users/2/articles to get a list of articles b …
0
votes
1answer
25 views
In REST how should I deal with a url element not conforming to a defined type ?
Say I have resource defined as /thing/{id}/ and my id is a int in the database ...
What makes most sense in dealing with requests that ask for a resource which ins't an int like / …
1
vote
4answers
72 views
What tools are available to auto-generate ASP.NET MVC REST services from domain objects?
I am developing an application for which I want to expose the basic CRUD operations on most of the database entities through REST web services. A colleague has demonstrated some im …
2
votes
3answers
95 views
How to create a REST API for a Ruby application?
I would like to know how to provide a Ruby application with a REST API. I could code something based on Ruby's TCPServer API, but that seems a bit low-level. Do you think it would …
0
votes
2answers
26 views
Which (popular) websites support mashable APIs?
Which popular websites out there support an HTTP based API?
I am looking for content of general public interest (hence, Amazon's RESTful API wouldn't qualify, for example).
Some …
0
votes
0answers
35 views
WCF - Rest and JSON Operation Parameters
Hi there,
I'm implementing a generic restful api in WCF. I require access to a generic object deserialized from JSON (as a parameter to a POST operation). I'm using the raw progra …
11
votes
8answers
253 views
Why do people want to deliver both Json and XML as output to their REST interfaces?
I understand why "REST framework" vendors want to provide the support for returning both Json based representations and XML based representations, but why do people want to return …
0
votes
1answer
13 views
Using JaaS with Jersey on Grizzly
I'm trying to find a simple, flexible way to add JaaS authentication to REST. I found a post that I think leads me in the right direction (See StevenC's answer). It sounds like t …
0
votes
4answers
71 views
Best way to do Spring MVC without JSP?
I wish to use Spring MVC to provide a REST web service. However, running through some books and tutorials, it looks like ModelAndView always returns a parsed JSP file. I guess I co …
