Representational state transfer (REST) is a style of software architecture for distributed hypermedia systems such as the World Wide Web. It has increased in popularity relative to RPC-based architectures such as SOAP due to the intrinsic de-coupling of client from server that comes from having a ...
0
votes
1answer
21 views
Routing with regex condition in Rails 2
In my routes.rb file, I've defined these routes:
map.with_options(:controller => "review") do |review|
review.review_index "/review/:page", :action => "index", :defaults => {:page ...
-1
votes
0answers
18 views
Error in starting the RESTful web service on my windows7 [closed]
I want to run RESTful service on my winodws7 system. But when I am startng this server I am getting these errors. Sorry, I am unable to post my error here. so i am giving link below.
Any ...
0
votes
0answers
31 views
Basic HTTP Authentication for REST Server on Drupal 7
I feel like this might be answered already somewhere, but no one seems to have answered this question directly about Drupal and I'm wondering if that might be making all the difference.
I have setup ...
0
votes
1answer
44 views
400 Bad Request when posting JSON Array to a Spring controller
I have been successful in sending a simple JSON object over to a spring framework Controller
curl -v -H "Content-Type: application/json" -H "Accept: application/json" -d ...
0
votes
1answer
36 views
Backbone Sub-Collections & Resources
I'm trying to figure out a Collection/Model system that can handle retrieving
data given the context it's asked from, for example:
Available "root" resources:
/api/accounts
/api/datacenters
...
0
votes
0answers
20 views
ASP.NET Forms Authentication with per session/page API token
Let me first start by saying that I realize that this is very similar to many other questions about service access control but i can't seem to find one response that is relevant on all of the points ...
1
vote
1answer
21 views
Authenticating Developers with APIKey and Users with BasicAuth/OAuth
I've looked around for this but can't seem to find a canonical answer. I'm trying to follow best practices. Maybe I'm thinking of it the wrong way.
I'm thinking of my API users as two different ...
0
votes
1answer
18 views
How to model a global resource in a REST API?
REST seems to focus most on collections of resources -- lists of things. How should one model something that exists exactly once in a system? And more specifically something very simple. Suppose ...
0
votes
1answer
24 views
How to use selective property of class as Data Member in Rest Service
I am trying to use a class as DataContract and have mark there property as DataMember.
[DataContract]
public class Contact
{
[DataMember]
public string FirstName { get; set; }
[DataMember]
...
0
votes
0answers
50 views
How to creating a paged traverser with REST API
I creating a paged traverser with REST API VIA neo4j manual,
but return start node when create succeful.
Why?
somebody can help me?
this is my test code
Data Model
0
votes
1answer
25 views
Use RestSharp to deserialize different data outputs from one resource
I have quite generic webservice, which responds with many standard http statuses. However, it returns different types according to these statuses. This is completely proper REST implementation: I GET ...
0
votes
0answers
16 views
Credentials issues using the rt-client rubygem (rest interface to request tracker ticket system)
I am having issues using the rt-client gem(link), as it keeps returning a "RT/4.0.8 401 Credentials Required". The REST interface for this site is working, as I have some perl scripts that are ...
0
votes
0answers
9 views
POJO as a Jersey ReST Service Performance
I built my first ReST service, and I'm using an annotated POJO as the service class.
@Path("/foo")
public class FooService{
@Get
@Produces({MediaType.APPLICATION.JSON})
public ...
0
votes
1answer
15 views
WCF REST service hosted in Windows service not working without IIS installation
I have developed a REST service using WCF and hosted it in a windows service and that works fine on a machine which has IIS installed, but not on a machine which does not have IIS. On the machine ...
1
vote
1answer
20 views
How should Transient Resources be retrieved in a RESTful API
For a while I was (wrongly) thinking that a RESTful API just exposed CRUD operation to persisted entities for a web application. When you code something up in "the real world" you soon find out that ...
0
votes
1answer
22 views
Entity version in odata using accept header in web api
I am using Web API to create RESTful services. I decided to using Accept header as a api versioning mechanism by following this implementation.
...
0
votes
0answers
6 views
Accessing WeChat Web API
Is there any way to download all of a user's messages or contacts using some sort of Web API? I have an account that is receiving a lot of messages, and I need to analyze these messages. It would be ...
0
votes
2answers
33 views
Error on Spring REST webservice call
I have following webservice call
@RequestMapping(value = "modifyUser/{userDn}", method = RequestMethod.POST, headers="Accept=application/json")
public @ResponseBody
JSONObject ...
3
votes
2answers
51 views
Adding functionality to Backbone Models?
I'm trying to figure out the "correct" way of accomplishing custom update
functions in Backbone.js Models. An example of what I'm trying to do is:
var Cat = Backbone.Model.extend({
defaults: {
...
1
vote
0answers
36 views
Sending Authenticated string to REST Server from iOS Application
I have setup a REST server on Drupal 7 to handle Push Notifications for an iOS App but I am having trouble getting REST to authenticate my request. I don't know if my problem is on the server end or ...
0
votes
1answer
44 views
How should a client pass a facebook access token to the server?
On every call to my REST API, I require clients to pass user's facebook access token, which authenticates the user. What's best practice for passing this token?
maybe as a parameter behind the HTTP ...
0
votes
1answer
26 views
Jquery Json ajax get receiving an exception immediately
When I call a WCF service (which returns a string with json data in it) I created inside an html page using ajax and jquery, I receive no data. However if I hit the URL for the service directly within ...
0
votes
0answers
18 views
RestFull api in zf 1.12 and authentification persistence
I am developping a restfull api in zend returning data from database in json.
the client can be for example an iphone app.
What I need to do is to authenticate someone who entered login and password ...
0
votes
1answer
48 views
What are the major differences between Web API and ASP MVC
The title really sums up my question. I have used both technologies but I am uncertain as to what one offers that is substantially different than the other. In essence:
What criteria and/or ...
0
votes
1answer
35 views
Where to host a Restful web service in JAVA in shared hosting solutions
I have just finished developing a REST web service that is consumed by a mobile application. The web service is developed with Java and run in an Apache server.
I'm now moving to the testing part. ...
0
votes
0answers
35 views
Zend Rest Route - how to create hierarchical URLs?
I'm developing an API using Zend Framework 1.12.3. I'm using Zend_Rest_Route, but I would like to have hierarchical URLs:
http://api.example.com/professors
...
0
votes
1answer
35 views
Can I use REST and SOAP both in Android Application
I am trying to build an Android application. It has a SOAP based Web service from which it needs to consume the data. I have a middle-ware Worklight server implementation too. The data coming from the ...
1
vote
2answers
148 views
Consuming my own Laravel API
I'm developing a Laravel 4 app that will make the same CRUD operations on my dataset available through a JSON REST API and a Web UI. It seems that to prevent breaking the DRY principle that my UI ...
-1
votes
1answer
34 views
Notification between remote/local applications [closed]
I want to send notifications with the event information to different local/remote applications. I don't want to use any TCP-IP communication as there will be firewall issues. What is the best way to ...
0
votes
1answer
31 views
How to use zend_http_client or curl in right way
I'm using zend_http_client. What i want is to send a request to transfer(without redirecting) to another site and send number in field that I have and get the answer with info i need to use on my ...
1
vote
1answer
36 views
Different JSON array response
I have problems parsing two different JSON responses.
1: This is the JSON response I get from a RESTful API:
{
"gear": [
{
"idGear": "1",
"name": "Nosilec za kolesa",
"year": ...
-2
votes
1answer
39 views
Interaction of a iOS app with server [closed]
I am currently working with an iOS app that needs a remote interactive server.In my app i have to request some queries as well as post some data to server.Which is the right way or appropriate way to ...
-1
votes
0answers
13 views
Javascript Library to Test API Endpoints
I am looking for a simple API for testing rest API. I would like to be able to keep the mocha and/or jasmine asserts structure, while chaining the API data, verb etc.
api( '/maker' )
.put(
...
0
votes
2answers
53 views
Using Cookie for Authentication with Restful service in Spring
I've used Spring Security to secure RESTful web services built with Spring, but in the past the request has used authentication headers for the authentication. Now I need to secure an application like ...
0
votes
0answers
31 views
How to generate Java client proxy for RESTful service implemented with Spring?
We use Spring to implement REST controller, for example:
@Controller
@RequestMapping("/myservice")
public class MyController {
@RequestMapping(value = "foo", method = RequestMethod.GET)
...
0
votes
1answer
29 views
Restful API GET failing with 'The parameters dictionary contains a null entry for parameter 'id' of non-nullable type' '
I am getting the following error:
The parameters dictionary contains a null entry for parameter 'id' of non-nullable type 'System.Int32' for method 'System.String Get(Int32)' in ...
0
votes
2answers
29 views
Trying to return class instance from class method in ruby
I'm trying to write a wrapper around the rest api for Neo4j. The other ORMs I've found don't quite do what I need them to do. I want to have something that mimics ActiveRecord, but for a graph ...
0
votes
1answer
78 views
CodeIgniter Rest API (Phil Sturgeon) - How to chop up a very large api file
I have been building a rest api (using Phil Sturgeons Codeigniter-Restserver) and Ive been sticking closely to the tutorial at:
...
4
votes
1answer
40 views
simple search using restful api
I'm a complete noob trying out my hands on Ajax and Jquery. By following an online tutorial, I successfully made a search engine using MySQL as the backend database;
<script>
$(function() {
...
0
votes
1answer
20 views
Rails - Creating a model and its nested resources
I'm trying to create a Gallery model and its has_many associations by passing the following to create.
[
{
"title":"Some Titler",
"description":"",
"date":"18-3-2012",
...
0
votes
1answer
17 views
Restful Get Json from URL by POST method and add to DB?
I have a postAction in my Controller. Then I send JSON by curl with POST method
{
"first_name":"Nguyen",
"last_name":"Tien Hai",
"dob":"1991-07-09",
"sex":"F",
"address":"80\/280 ...
1
vote
1answer
60 views
G-WAN: how to get rid of the “?” in URL and how to set default language?
In G-WAN the default URL is in the form mydomain.com/?hello.c
I want to get rid of the ? to have URLs that look like mydomain.com/hello
The user manual mentions substituting a different character ...
-2
votes
1answer
17 views
Creating and running web application: which steps should I take? [closed]
I know this might sound like a noob question, but so far I've only developed client side application, and now I would like to do something more. I would like to create a web application similar to ...
0
votes
0answers
15 views
Can @GET define Consumes Content-Type for JAX-RS implementation?
I have been trying few samples on JAXRS (used Jersey for this example). The following is a sample stub implemenatation I have:
@Path("stubservice")
public class StubImpl
@GET
...
0
votes
1answer
30 views
REST Security Design good practice when exposing resources ID
On a REST based system what are the options to "encrypt" resources ID.
For instance:
/client/2
would be accessible at
/client/SOMEHASHKEY
I am thinking :
1 - Have DB tables that keeps ...
0
votes
1answer
38 views
Access control to a page with REST service
I have read many discussions about authentication, authorization etc. with REST services.
I have now idea how to make authentication/authorization with REST.
But the thing I did not get is, how to ...
0
votes
1answer
19 views
GET nonexistent Neo4J node with REST API - improvements?
GET nonexistent node with REST API throws Exception (costly in Java afaik) - it's just a 404 as expected, but I can do without the exception. Handling HTTP GET myself and unwrapping the response ...
0
votes
2answers
72 views
WCF Restful Webservice serializing Datatable as XML
I'm using a WCF restful webservice with framework 4.0. I want to serialize a datatable as XML and return the resulting XML. I have this working, but I can't help but feel there is a better way.
I ...
1
vote
0answers
38 views
Make Servicestack's FacebookAuthProvider return AuthResponse
Is it possible to make ServiceStack's FacebookAuthProvider return AuthResponse instead of always returning HttpWebResponse.
I've tried creating my own CustomFacebookAuthProvider and overriding ...
-3
votes
2answers
25 views
I can not delete using the delete method of Respect/Rest [closed]
I have the following controller (method of the controller):
public function delete($id) {
exit($id);
}
And a form:
<form action="http://localhost/app/<?php echo $value->id; ?>" ...




