0
votes
2answers
27 views
Rails - RESTful Routing - Add a POST for Member i.e(tips/6)
Hello there,
I'm trying to create some nice RESTful structure for my app in rails but now I'm stuck on a conception that unfortunately I'm not sure if its correct, but if someone …
3
votes
2answers
32 views
Rails Restful actions Index Put
I have frequently run into the situation where I want to update many records at once - like GMail does with setting many messages "read" or "unread".
Rails encourages this with th …
3
votes
1answer
29 views
How should one provide links in RESTful service using a non-XML data representation?
Hi all
I've been doing a lot of reading lately about how to implement truly RESTful WS's. A lot of people have linked to the article here which details several constraints that i …
0
votes
1answer
25 views
asp.net mvc got 405 error on HTTP DELETE request?
Hi everyone...
Im trying to pass the DELETE to a url in asp.net mvc using Javascript but however i always got "405 Method not allow" return.
is there anyway to make this work?
…
1
vote
2answers
53 views
Allow RESTful DELETE method in asp.net mvc?
im currently setting up asp.net to accept DELETE http verb in the application.
However, when i send
"DELETE /posts/delete/1"
i always get a 405 Method not allow error. I tried …
0
votes
0answers
38 views
Rails - JSON and XML auto render
I'm creating a RESTful API for my application, and I'm noticing that the use of render as :xml or :json is a constant on all my methods and requests, because the API returns this 2 …
0
votes
1answer
36 views
Restful library like httpLib2 For .NET
Anyone know of a library/framework like httplib2 (python) http://code.google.com/p/httplib2/ for .NET?
It wouldn't be difficult to duplicate it, but would be a waste if it alread …
1
vote
5answers
110 views
django ease of building a restful interface
I'm looking for an excuse to learn django for a new project that has come up. Typically I like to build RESTful server-side interfaces where a URL maps to resources that spits out …
1
vote
2answers
24 views
server-side restful api analytics
Hi,
I have a rails-based restful server-side api.
I want to know what services are called the most, their response time, etc.
So this is sort of web analytics, but it's for serv …
1
vote
4answers
70 views
Web UI to a restful interface, good idea?
I am working on a experimental website (which is accessible through web browser) that will act as a front-end to a restful interface (a sub-system). The website will serve as an in …
1
vote
2answers
43 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 …
1
vote
1answer
54 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
6answers
79 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 …
0
votes
1answer
32 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
73 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 …
