RESTful, or representational state transfer, is a style of software architecture for distributed hypermedia systems such as the World Wide Web.
1
vote
1answer
19 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
...
1
vote
0answers
13 views
Handling restful login without HTTP AUTH
I'm working on a web application, and I've decided to make serverside a(n almost) restful web service (using node.js).
I say almost restful, because while I would like to use resource paradigm, I ...
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 ...
2
votes
1answer
38 views
Restful way to validate a resource
Imagine I have a resource of a some special case of an e-commerce application /cart in my API that supports some CRUD operations: GET, POST
I want to have a service that validates if the cart is ...
0
votes
1answer
25 views
What is the proper RESTful way to handle a variable response for an endpoint that is based on the type of user that accesses it?
I have resource endpoints that I would like to respond differently to the user that tries to access the endpoint.
Scenario
Let us say that I have a resource endpoint /users, and the following ...
3
votes
1answer
28 views
REST: how to pass dependent resources when creating a new resource?
I'm currently figuring out a way how to build our REST webservice so resources can be linked to other resources at creation time. Take the following scenario.
We have /user/123/ who sits in the ...
1
vote
2answers
47 views
Developing RESTful clients on iOS
I am building an app on iOS and on Mac OS X that talks to a server using REST. The app is expected to store data fetched from the server in a local store (preferably in a SQLlite database). I ...
2
votes
0answers
36 views
How should 'conventional' Ember-friendly APIs be designed for creation of mutually dependent parent and child models?
I'm building a Rails app with an Ember front-end. I'm trying hard to ensure that the API is as plain, vanilla, RESTful and conventional as possible, in the Rails/Ember spirit.
I'm confused as to how ...
0
votes
0answers
11 views
Restful Services/Http Services [closed]
I would like to learn more about the architectures of RESTful and https services. Ultimately I like to develop and consume these services.
Can anyone point to a good resource/video/training on any of ...
0
votes
0answers
15 views
Is there some kind of service to queue api calls?
I need to call the desk.com api to create cases when a customer completes a form on my site. However sometimes the API is down for maintenance (too often!) and my call will fail.
Presently I just ...
-1
votes
1answer
62 views
Suggestion required: RESTFUl webservice transform xml to Json
Hi I am new to Java and not sure how to proceed (kindly ignore any typos or my language). Can somebody help me out (just the Idea/how to proceed, dont need any sample code). I am trying to create a ...
1
vote
1answer
108 views
How to secure a REST api between a single page app and a server?
I have 2 servers in place, one is responsible for the front-end application and the user authentication. This server is rendering a single page application coded in javascript. This javascript app is ...
0
votes
1answer
81 views
Grails- RESTful web services with pdf attachments?
I've to implements Grails RESTful Web Services for both consumer and provider.
Provider has to return pdf document and consumer has to process it and save it to the db.
As a provider how to return pdf ...
0
votes
1answer
94 views
Need to send data in PDF,CSV and HTML format from REST API. Should I send files Or send JSON?
I am creating REST Api for a project using Spring MVC. On front end some reports are needed to be displayed in PDF, CSV and HTML format. Should I send JSON data to the front end for those reports and ...
0
votes
1answer
96 views
Spring MVC RESTful multiple view - 404 Not Found
I have a web app which has JSPs as a view. But now I am trying to implement a RESTful in the same web app. I created a new controller, where will be my RESTful(I am not sure if it makes sense yet).
...
0
votes
1answer
67 views
Django Rest Framework
I have a method that grabs POST data that is formated in json format like this
[{"UserName": "alexgv", "Password": "secretpassword"}]
Here is the method
def Login(request, *args):
data = ...
0
votes
2answers
123 views
Android - writing data to database using RESTful api
I'm a beginner Android programmer and I am working on a program that reads Contacts from native device phonebook and writes them to database ( ).
I can get and read the contacts from my mobile ...
0
votes
1answer
11 views
proper data exchange in RESTful way
On server side (RESTful server) what criteria should be the main to decide how to read input arguments, data?
Accept or Content-Type
If 'client' (JS) sends to my RESTful service POST request and ...
0
votes
2answers
74 views
RESTful services - how to design a URL with many parameters
I've developed REST services, but now I realized that I'm doing something wrong.
For example, I have a service which retrieves information about a specific device. Each device has an address: ...
0
votes
2answers
91 views
How to secure RESTful API in a proper way with a dynamic token Rails
What I am trying to achieve:
I'm looking to create a (REST) API for my Rails application. I have looked for Securing an API, Versioning of API and API Gems Railscast for implementation of API calls.
...
0
votes
0answers
12 views
how to design a restful api for data collection?
I am trying creating restful services for the first time.
Trying to figure out how to implement a data collection API/monitoring API.
For Eg:
1) An API to collect statistics of each node in the ...
2
votes
1answer
74 views
security and authentication protocols
I was researching the topic of authentication protocols, specifically protocols that work well with JAVA and REST API, and had a question regarding the subject.
The architecture of the required system ...
0
votes
0answers
75 views
authentication and authorization design in RESTful web application
I have an web application built using RESTful services (JAX-RS).
There are REST calls, and simple JSPs with js files to handle data.
Now I want to implement authentication and authorization in ...
0
votes
1answer
95 views
HttpUrlConnection PUT method doesn't work
I've done the following client application to consume REST services (a PUT method) using AppacheHttpClient (it's working) :
public class UserLogin {
private static final String URL = ...
0
votes
1answer
79 views
Building A Backbone.js User Model, Collection and View For A RESTful JSON API
So I just finished making a fully RESTful JSON API for a User in node. When you visit http://localhost:8080/user/create you get what you would normally expect- a new User which is then stored in a ...
4
votes
1answer
160 views
Conditionally include child nodes with RABL
I think I have a very basic case when I'm using rabl to return JSON for standard RESTful controller methods...
First let's say I have a typical one to many relationship with parent and child (let's ...
1
vote
2answers
189 views
Node.js Express jquery ajax request not working
Working on a RESTful api, When I access this in my browser at 96.126.111.211/getLeaderBoard
it works fine and gives me the JSON data from my mongo database.
Though when I try a jquery ajax request ...
0
votes
0answers
49 views
Why XMLhttprequest function cannot make post when using RestfulApi?
My html code is below.
<html>
<head>
<title>To-Do</title>
<meta name="description" content="To-Do" charset="utf-8"></meta>
<link href="css/bootstrap.css" ...
0
votes
2answers
65 views
Implementing RESTful service and consume xml at the service and map it to a bean class
Can anyone please explain hot to implement RESTful service and post data in an xml and cnsume the xml at the service and map it to a java bean class? It would be better if an example can be posted. ...
0
votes
0answers
63 views
Synchronizing mobile application via RestFul Service
Context:
I am currently developing a RestFul Web Service in order to retrieve data remotely from a mobile application. The main operation will be a request to retrieve the last updated data on the ...
1
vote
1answer
72 views
Restful WebService Deployment Strategy - Best practises
We are developing Restful webservices (JAX-RS). We have resource organization like the following:
Base URI: api.example.com
->Accounts
[AccountId]
->contacts
->orders
->cart
...
1
vote
1answer
110 views
When creating a RESTful ContentProvider in Android, should the unique id in the SQLite database match the Key in the RESTful service?
I'm using Virgil Dobjanschi's Option B (from this talk: http://www.google.com/events/io/2010/sessions/developing-RESTful-android-apps.html) to implement a web service on my Android App to connect to a ...
1
vote
2answers
163 views
How to design RESTful URL with many input parameters
I am working to create a Java based RESTful API that uses Spring MVC.
Now for some of the API endpoints-- multiple different parameters are required... I am not talking about a list of values-- more ...
4
votes
2answers
131 views
How to structure REST resource hierarchy?
I'm new to server side web development and recently I've been reading a lot about implementing RESTful API's. One aspect of REST API's that I'm still stuck on is how to go about structuring the URI ...
0
votes
1answer
31 views
User friendly and restful (rails 3)
i am a rails programmer who is on to his 3rd project now (new of course).I am looking for an answer to a general question about Restful architecture. I am sure i am doing something that has a good ...
0
votes
0answers
16 views
SaxException with my first RESTful web services
I'm developing my first web services with javaEE6
@Path("/clienti")
@Produces( {MediaType.APPLICATION_XML , MediaType.APPLICATION_JSON , MediaType.TEXT_XML})
@Consumes( {MediaType.APPLICATION_XML , ...
1
vote
0answers
263 views
Netbeans 7.3 - new html5 project - where to place php and mvc?
I may perhaps been missing something really basic here.
Netbeans 7.3 just came up, with this new HTML5 project feature.
It seems interesting, but the way it's setup make me ask some questions that ...
1
vote
2answers
62 views
HTTP status code when single request asks for too large resource or too many of them
Does somebody know which HTTP status code is the right one for the following situation?
An anonymous client can request a range of items from a collection from RESTful API with GET ...
0
votes
1answer
52 views
Rails and factory paterns
Imagine a Rails project that looks up animal celeberties based on their names. This Rails app is backed by an external service that does the actual lookup. The service returns back results based on ...
0
votes
1answer
99 views
Building a RESTful API in ASP.NET
I have seen a ton of sites on tutorials and how-to's for building your own RESTFul API using ASP.NET. All of them seem to use MVC though. Is it possible to build my own RESTFul API using ASP.NET and ...
2
votes
2answers
74 views
RESTful URLs for distinct versions of a resource
I'm having a real hard time conceptually understanding something proper concerning URLs for versioned resources.
Let's say I have an application that tracks recipes in a way very similar to a version ...
1
vote
1answer
148 views
Send Complex data to Restful Web Service — API design
I am trying to convert some of the SOAP based web services to Restful web services. In one of our existing SOAP based web service, we pass in a RequstDTO and the web service returns a ResponseDTO. The ...
0
votes
2answers
68 views
Which HTTP Method should I use for my REST Service method doing READ & WRITE?
As per RESTful services guidelines we should use GET for reading a resource, POST for creating a new resource, DELETE for deleting an existing resource etc.
But assume I am developing a RESTFul ...
1
vote
2answers
101 views
Restful API or Traditional web app [closed]
I see web application community seems to have two different way to build a rich experience web applications.
Build a backend as pure Restful API server, and use javascript MVC frameworks like ...
0
votes
2answers
137 views
spring mvc generic controllers and services
I am developing a small RESTful application using Spring MVC and I want to implement the generic CRUD in generic controllers, services and maybe entities. I have an entity Person and 2 entities which ...
1
vote
3answers
49 views
Is there a better restful interface for this?
GET https://api.website.com/v1/project/employee;company-id={company-id},
...
4
votes
2answers
78 views
RESTful Verify Password service
I'm writing a Verify Password service using the ASP.NET Web Api.
The service accepts a password for the currently signed in user, verifies it, and returns an encoded value. This all happens over SSL.
...
1
vote
1answer
57 views
Domain availability checks through a REST API
Note: i'm not looking for a domain availability webservice! Now that we got that out of the way ...
How would I architect a system that both allow us to retrieve resources from our domain portfolio ...
0
votes
1answer
31 views
Api and consumer flow
I am developing an API for a social network website. This API will basically get all the requests from the users (get friend list, post a status update etc) and reply back if necessary.
We will ...
0
votes
1answer
57 views
REST API design - Withdraw Balance action
Currently designing a REST API and unsure how best to tackle a withdrawal action, for the purpose of the post ignore security as this is already handled.
Currently the User resource has a balance ...


