1
vote
1answer
20 views
REST and RDF, what’s the representation strategy?
Your triplestore contains a lot of nodes, and you have to make accessible this database via a REST interface.
Now, my solution would be that every named (not-anonymous) node is exported as a …
0
votes
2answers
10 views
REST friendly WCF Endpoints in .NET 3.5
I wanted to create REST friendly URLs with my WCF service endpoints by avoiding the use of .svc. I know I can accomplish this by using IIS rewrite module to append the .svc.
Does anyone else know of …
0
votes
3answers
56 views
[iPhone and Web Services]: REST vs SOAP
I've started my degree project, a mobile application suitable for iPhone, Android and (in the near future) Symbian. The server architecture is the following:
web site (for "standard" users);
web …
0
votes
3answers
28 views
WCF - using multiple bindings including REST (WebHttpBinding) on one service library?
Hi,
I want to expose my Service Layer (which is currently written as standard class library with POCOs) for external as well as internal consumption. External clients will use it over REST style APIs …
0
votes
3answers
42 views
Is there a way to redirect to a specific page after a RESTful delete in Rails?
Lets say I have a message resource. Somewhere in the html I have:
<%= link_to("Delete", message, :title => 'Delete', :confirm => 'Are you sure?',
:method => :delete )%>
Right …
3
votes
3answers
37 views
PHP using CURL: is there a way to emulate a cookie instead of saving it to a file?
I access a REST api service that utilizes a variable called session_id. The API calls for this to be stored in a cookie and I accomplish this as follows:
$ch = curl_init(); // initialize curl …
1
vote
8answers
104 views
Doing a HTTP PUT from a browser
I would like to know what the definitive (?) answer is for how to do things other then POST/GET from a browser - either a HTML form or Ajax, as I hear mixed reports on what browsers allow what …
0
votes
1answer
16 views
How to dynamically create WAP pages by using RESTful Service?
Hi,
I am creating a RESTful service which has to create WAP pages dynamically. I am wondering if it is possible to create a generic "wml" object with members representing wap elements (for example …
1
vote
1answer
44 views
Real Time Twitter Status
I'm looking to write a Twitter application, and I need to get real time (or as close as possible) updates. The official REST API only allows 100 calls/hour or so, and if I want to get status from more …
0
votes
3answers
19 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.
0
votes
7answers
121 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 …
1
vote
3answers
33 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
1answer
17 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
60 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 …
1
vote
1answer
27 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).
…
