0
votes
6answers
91 views
Objective reasons for using Python or Ruby for a new REST Web API
So this thread is definitely NOT a thread for why Python is better than Ruby or the inverse. Instead, this thread is for objective criticism on why you would pick one over the other to write a RESTful …
0
votes
3answers
15 views
How rails issue put method on update ?
On edit.html.erb file, scaffold created, I don't see any code specified PUT method. How come the post form call update action with PUT method.
1
vote
3answers
21 views
WCF + REST: Where is the request data?
I'm currently developing a WCF RESTful service. Within the validation of the POST data, I am throwing exceptions if the request XML does not conform to our business rules.
The goal is to send an …
0
votes
0answers
13 views
Restlet ClientResource Post Chunked Encoding - WCF Unsuported
Hello All,
I'm developing a product that will use extensively of Restlet for consume
WCF Rest Services. I had created a method to post a XML of a class
containing 2 attributes.
Restlet post my xml …
1
vote
3answers
47 views
Consume RESt API from .NET
Hi All,
I am trying to consume REST API from my .NET Application. This API's are all written in JAVA.
I am asked to pass the authentication credentials vis HTTP headers. How can I pass these …
4
votes
4answers
101 views
Is it ok by REST to return content after POST?
I am using RESTlet and I have created a resource. I handle POST by overriding acceptRepresentation method.
Client should send me some data, then I store it to DB, set response to 201 …
1
vote
1answer
24 views
Rails, OAuth, and CSRF protection
I am using REST and OAuth to talk to a Rails app (from an iPhone app, but that should not be relevant). However, I am running into some issues with Rails' CSRF protection (via protects_from_forgery).
…
-1
votes
4answers
57 views
How do I send a PUT/DELETE request in HTML?
Hi,
I'm messing around with REST in PHP and I understand that I can capture the request method vi a $_SERVER['REQUEST_METHOD']. But how do I trigger PUT/DELETE requests in PHP without the use of cURL?
…
1
vote
4answers
59 views
Need a better language/frameworks doing RESTful webservices
I'm developing out replacements for our company's web service stack.
The current stack was developed using SOAP and had some REST endpoints manually hacked in. It's a maintenance nightmare.
I can …
1
vote
1answer
30 views
Consuming WCF REST service in multiple ways (.Net, plain XML)
I have become quite frustrated of WCF as I just want to use this simple scenario:
Provide a webservice using REST, with a UriTemplate like /method/{param1}/{param2}/ and a 3th parameter that is sent …
0
votes
2answers
29 views
How to use OpenID in RESTful API?
I'm building Pylons-based web application with RESTful API, which currently lacks any authentication. So I'm going to implement that and in order to avoid all the trouble and caution with storing user …
0
votes
1answer
39 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 …
0
votes
2answers
36 views
Help with rails rest standard
I have a messages controller thats declared as a resource in my routes.
I want to be able to have a list view of received messages
and a different view of sent messages.
But I dont want to break the …
0
votes
2answers
71 views
Method to handle “killed” Java jobs?
Our server web app will handle jobs that are requested by REST API requests.
Ideally if the server dies during a job (ie: plug pulled), the job should resume or restart at startup.
A very …
3
votes
4answers
70 views
Why is squid good for REST architectures ?
In this article, it is argued that Use Memcache if you frequently fetch random entities from a database, and Squid if you use a REST architecture. Please explain why (with regard to Squid).
