1
vote
1answer
25 views
How can I Convert XML to an Object using Spring 3.0 mvc while making RESTful request
Hi,
I'm using the Spring 3.0 RC1 framework and I'm currently testing out Spring mvc. I wanted to use Spring mvc to handle restful requests. I have set up my controller to handl …
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 …
1
vote
1answer
58 views
lightweight RESTful PHP server
I want to write an extremely lightweight PHP server which handles data requests from remote clients. The data returned is tabular (like that of data read from a CSV file or a datab …
0
votes
0answers
16 views
Can Zend_Service_Rest do file uploads?
I assume that RESTful services is a comprehensive paradigm, that it also could cover file uploads too, as a subset of http operations.
If so, how does one do file uploads in Rest …
0
votes
3answers
42 views
Methods for limiting the Rails render format to html
I have a Rails 2.1.2 site that only has html templates e.g. jobs.html.erb, so when I request a restful resource:
www.mysite.com/jobs/1
It renders my job in html, however, if …
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 …
2
votes
1answer
45 views
asp.net MVC and RESTful routing, rails-style. Is it possible?
Is there any way to get truly restful routing working in MVC, just like the rails dudes have? I 'm talking about nested urls like /bands/metallica/albums/killemall/track/4
The onl …
0
votes
2answers
55 views
Setting up a Restful POST request using xml
Hi,
I'm working on setting up a RESTful request for the application I'm working on and I wanted to use xml as the request in the uri instead of allowing the client to supply the …
3
votes
4answers
64 views
any good books on scalable web applications (Java/Ajax/REST)?
Are there any good books on the subject worth reading and still up-to-date with current technologies?
I'm mostly interested in back-end architecture and things I should consider c …
1
vote
1answer
27 views
problem with making Web Request in Silverlight
Hey,
I am making restful requests in my silverlight app, I want to get information that might be pushed to the page so i continously make the request to get the updated data, doing …
0
votes
3answers
54 views
How to return generated ID in RESTful POST?
Let's say we have a service to add a new hotel:
> POST /hotel
> <hotel>
> <a>aaa</a>
> <b>aaa</b>
> <c>aaa.......this is 3 …
1
vote
2answers
57 views
How to validate REST request?
Given this service:
POST /hotel HTTP/1.1
<hotel>
<a>aaa</a>
<b>bbb</b>
<c>ccc</c>
</hotel>
HTTP/1.1 201 CREATED
Location: / …
0
votes
3answers
40 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>
> …
0
votes
3answers
52 views
Approach for REST request with long execution time?
We are building a REST service that will take about 5 minutes to execute. It will be only called a few times a day by an internal app. Is there an issue using a REST (ie: HTTP) r …
0
votes
1answer
37 views
Connect from iPhone to RESTfull WCF Service with Self Signed Certificate
Hi Guys,
I have an iPhone application which has to communicate with a RESTfull WCF service over a secured connection(HTTPS) with a self signed certificate.
The WCF service return …
