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 ...

learn more… | top users | synonyms (2)

0
votes
0answers
20 views

REST references from one resource to another (Expandable Attributes)

I read at Stormpath API an interesting description of Expandable Attributes in their REST API. Quoting their docs : "expand" Query Parameter - Using the previous example account resource, ...
1
vote
1answer
32 views

Protect my Django REST API (basic Authentication or anything else)

I'm trying to protect my Django restful api. I got two clients : my Django Front end application (Ajax requests on my server) a python application using httplib to make its own requests For now ...
0
votes
1answer
16 views

RESTful API design: reasonable to accept unique identifiers rather than resource URIs?

Are there disadvantages to allowing a RESTful API to accept a representation with an implicit link to another resource? To illustrate this, take that I have two resources: GET /people/:id GET ...
1
vote
1answer
27 views

Query mongoDb with REST interface

This is my collections: { "offset" : 0, "rows": [ { "_id" : { "$oid" : "5199e109f456aab938b304de" }, "type" : "cluster", "id" : "1", "vertices_transformation" : [ ...
0
votes
1answer
33 views

REST Jersey exception AbstractJAXBProvider

I have this resource @Path("customer") public class Customers inside it, I have this function: @Path("signin/{mobileNumber}/{simNumber}/{password}") @GET @Produces({ ...
0
votes
1answer
38 views

REST questions: advantages of REST over XML-RPC

What is the advantage of using the REST verbs GET, POST, PUT, DELETE instead of just using POST and embedding an XML-RPC operation description in the POST body describing what we want to insert, ...
0
votes
1answer
32 views

Passing string to a REST API that consumes application/json

I have an interface that looks something like this: @Path("/myapi") @Produces("application/json") @Consumes("application/json") public interface MyRestApi { /// Some methods here that accept ...
0
votes
2answers
30 views

How to decode Gzip compressed request body in Spring MVC

I have a client that sends data with CONTENT-ENCODING deflate I have code like this @RequestMapping(value = "/connect", method = RequestMethod.POST) @ResponseBody public Map ...
0
votes
1answer
35 views

Jersey encrypt URL

I am using Jersey to implement REST web service. This is my RESOURCE @Path("/mywb") public class FoodItems { @Path("{ID}") public FoodItem getTodo(@PathParam("ID") String id) { return // ...
1
vote
2answers
53 views

How to create paths in RESTful web service for “action oriented” methods?

I am creating a RESTful web service and I try to follow the conventions and recomendations for creating a good web service. Now I have come to a halt though. I have a User entity in my system that I ...
1
vote
1answer
18 views

Rest philosophy for updating and getting records

In my app I'm displaying Race objects that essentially have three states: pending, inProgress and completed. I want to display all Races that are currently pending or inProgress, but not the ones that ...
1
vote
1answer
21 views

RESTful - Different URI of same resource to get different forms of same resource

I'm pushed into a peculiar situation where I'm not able to decide what is wrong and what is right. I've a resource called Invoice. To get a JSON or XML representation I use below URI ...
0
votes
0answers
13 views

Twitter REST API recursive search

i'm trying to get a recursive twitter search working, but after the first json response nothing happens. I have no idea why this is not working. http://jsfiddle.net/N6ED2/1/ function ...
3
votes
1answer
78 views
+150

How to make CommonsMultipartFile from absolute file path?

I'm creating an API for my application. In the GUI browser based application the file is uploaded via a form submission. So I simply do CommonsMultipartFile file = request.getFile(myfile). However, ...
0
votes
1answer
42 views

Post array of object to WCF Rest service using JSON?

Need to send a complex object having nested IList from Iphone in JSON format to WCF REST service. The Complex Object is defined as following: public class BatchData { long BatchID; ...
1
vote
1answer
28 views

How to model a REST API with “POST to PUT redirect”?

I'm creating a REST API for a backup service, which in principle is quite simple: a user is identified by some uid; files are identified by some fid; to upload a file, the user POSTs a file to ...
0
votes
1answer
42 views

safely transfer a credit card number to paypal

There is a way to store and use a customer credit card with paypal. The explanation about how to do this here. I want to use /vault/credit-card, to do this paypal asks me to include the credit card ...
0
votes
2answers
53 views

Parsing Json feed from Solr

I'm experiencing a strange behavior parsing feed from Solr. I dont get any response using the url1. But I get if I use url2 instead, In both cases I got responses putting the url directly into the ...
3
votes
3answers
57 views

What is the appropriate response for a broken link in the request entity?

Say I have a RESTful API that binds a user to a company: PUT http://example.com/users/john.smith { "company": "http://example.com/companies/Nintendo" } but the referenced company does not exist ...
0
votes
1answer
21 views

return dynamic value in java REST / Spring / Hibernate

I've inherited a REST API that is using JBoss, Spring, Hibernate, etc. and I'm new to all these so please forgive what seems like a dumb question (to me). The basic flow when performing a GET is to ...
0
votes
2answers
55 views

Designing an app to be deployed with AND without Google App Engine

After I finish developing an app using Google App Engine, how easy will it be to distribute if I ever need to do so without App Engine? The only thing I've thought of is that GAE has some proprietary ...
1
vote
1answer
21 views

Is it appropriate to return HTTP 503 in response to a database deadlock?

Is it appropriate for a server to return 503 Service Unavailable when the requested operation resulted in a database deadlock? Here is my reasoning: Initially I tried avoiding database deadlocks, ...
0
votes
1answer
16 views

Amazon S3 REST API; how is the API-key transferred firsttime between client and service?

Within my research I came across many different sources, but somehow I fail to see, which side is generating the private API-key and how is the other side getting hold of it. Many people recommend ...
0
votes
1answer
47 views

Meteor.js apps and API's

I'm trying to work out if Meteor.js is a good fit for an app I would like to build. The app will be completely web based but will require me to implement a RESTful API that exposes some of its ...
3
votes
1answer
32 views

Authentication required window popping up

I am totally confused. I've been working on a project for the last 6 months. For this project I have a glassfish server where a webservice is deployed. At the client side, I'm using REST with Jersey ...
1
vote
2answers
418 views

JSON, REST, SOAP, WSDL, and SOA: How do they all link together

Currently doing some exams and I'm struggling through some concepts. These have all been 'mentioned' in my notes really but I didn't really understand how they all linked together. As far as my ...
0
votes
1answer
21 views

Custom object input for CXF-JaxRS WebClient

I am pretty new to RESTful, and trying to create a sample services to achieve POST on void methods. I am able to test the method for String class but getting Exception while testing with custom ...
0
votes
0answers
29 views

Can I have custom required headers on my web api?

I was wondering if can I have custom headers requireds on my web api application. I don't know too much about headers, http protocols and etc. After reading a little, I thought on required the code ...
0
votes
0answers
27 views

Conditional cache headers not working in JAX-RS

I am trying from a long time to implement Conditional cache headers using JAX-RS but unfortunately the caching is not working, everytime the DB call is made irrespective of whether the caching is done ...
0
votes
3answers
48 views

Java : Deploy restful web service without jersey

Thanks in advance. I am new in web services , when i try to deploy the restful web service using java , it will generate an exception. I am follow the RESTful Java with JAX-RS to learn web services, ...
0
votes
0answers
32 views

mvc paypal rest api return error

My project include paypal api rest. My code below; private static string accessToken { get { string tokenAccess = new ...
0
votes
1answer
59 views

Make rest call from express

Currently struggling with a issue with express, node.js (and mongoose). I have set up a lot of REST functions that I can redirect to that is working. From my app.js: app.get('/users', user.list); ...
0
votes
1answer
18 views

Httplib2 : Processing Response String

import httplib2 h = httplib2.Http(".cache") resp, content = h.request("http://example.org/", "GET") When I follow the examples in urllib2 to make a GET request to an API, how do I deserialize the ...
0
votes
0answers
25 views

LinkedIn JS API token exchange to REST token using Spring Social for Linkedin

I'm trying to do the following: Let the user authenticate and authorize through Linkedin using Linkedin JSAPI, then take the authentication details and send them to my server to get the user profile ...
0
votes
0answers
20 views

Android app sending hashed password and salt to and from server

My android app takes plain text password, uses jasypt to hash it with randomly generated salt. I then send both the salt (make string out of salt byte array) and hashed password to server (REST) which ...
1
vote
0answers
66 views

Android - java.lang.NullPointerException when getting JSON

I'm facing this error when getting JSON from the server I'm using RestClient. I really can't figure out why. When I use the same source code in doInBackground method it works but when I used it ...
-1
votes
2answers
21 views

Method not allowed in REST PUT

I know this has already been asked. I am in a crisis here. I cannot make a PUT method to work. Just REST services. iis 7 windows 7 64 bits. I get Method not allowed, and not a single hint. I am ...
0
votes
1answer
41 views

Sending json files in curl requests with absolute or relative paths

Just wondering how I can send a curl command with the -d option specifying a file with its path and not a file in the current directory. This is what I'm getting when I try to test my app with the ...
1
vote
1answer
39 views

WCF rest api - [WebGet] working, but endpoint not found for [WebInvoke(…GET…)]

New to configuring anything server side ... thanks in advance for your help! I am trying to get a simple HelloWorld REST api working in VisualStudio2008 / .NET 3.5; eventually I'll be using it to ...
0
votes
2answers
18 views

GET request inside POST API endpoint interferes with 'respond_with'

After reading Stored Android Accounts for Authentication of Rails + Devise Accounts I'm trying to setup a Rails 3 API endpoint that can verify an OAuth obtained token through a GET request to Google. ...
0
votes
1answer
40 views

Authentication Error in using Alfresco Rest API

I am trying to hit the alfresco rest api using my standalone rest code. i get the login ticket when i use the below url - "http://host:port/alfresco/service/api/login?u=admin&pw=admin" and i ...
2
votes
1answer
26 views

HTML5 / Javascript authentication against JAX-RS interface

I'm implementing a backend and a web frontend with JBoss AS 7.1 and JSF. I want to implement a mobile client with JQuery Mobile (HTML5) that calls some REST interfaces made with Jax-RS. All interface ...
1
vote
0answers
30 views

ASP.NET MVC 3 Add Custom Header Exception

I want to add response header "Access-Token" >name "My Custom Value">value then i am getting this error; system.platformnotsupportedexception why do you think? public abstract class ...
0
votes
0answers
51 views

Getting JSON data using rest API in titanium model

I am very new in Titanium alloy var xhr=Titanium.Network.createHTTPClient(); xhr.onerror = function(e){ Ti.API.error('Bad Sever =>'+e.error); }; ...
0
votes
1answer
48 views

File Upload through rest and html as client

i just want to upload a file using jersey rest service and Jquery ajax as client here is my code 1. HTML <form action="rest/file/upload" method="post" enctype="multipart/form-data"> ...
0
votes
1answer
22 views

Fetch multiple collections with mongoose

Currently using node.js along with mongoose and express. I have two collections in my MongoDB and I can successfully retrieve data like this: ActivityList.prototype = { showActivities: ...
0
votes
0answers
10 views

Jira RESTful table javabean->json conversion doesnt work

I'm trying to get the aui-restful table working for my gadget plugin, to have a nice ui. Unfortunately I found out that my @POST-annotated create() methods provided Javabean parameter is always ...
0
votes
2answers
21 views

HTTP POST instead of CRUD REST paradigm

I have an question: how can I use POST HTTP method to simulate CRUD paradigm. I know that I can use POST to update and create but how can I delete and retrieve a resource using POST?
0
votes
0answers
6 views

Jira AJS.RestfulTable.CustomEditView is undefined

This error is displaying in the browser console. Full error log : Failed to run init function: TypeError: AJS.RestfulTable.CustomEditView is undefined If I dont add a CustomEditView, my ...
-1
votes
0answers
9 views

why am i not getting full profile eventhough i have given the scope=r_fullname in linkedin api

I am using this " https://api.linkedin.com/v1/people/~ " The output i am getting is 5/16/2013 8:33:28 PM: { "firstName": "Yashwanth", "headline": "HTML5,Windows 8 app Developer,.Net Developer", ...

1 2 3 4 5 296