The restful-architecture tag has no wiki summary.
3
votes
3answers
58 views
In REST, how should a GET request to a findAll operation be handled when the Resources are paged?
In a RESTful Service, Resources that cannot all be retrieved at once are paginated. For example:
GET /foo?page=1
The question is, how should I handle a getAll request such as:
GET /foo
Taking ...
3
votes
3answers
176 views
Actions vs. CRUD in REST
Is it appropriate to perform actions with REST, other than simple create (POST), read (GET), update (PUT), and delete (DELETE)? I'm kind of new to the whole RESTful theology, so bear with me, but how ...
2
votes
4answers
58 views
RESTful processing function/resource: GET or POST?
I am creating a RESTful web service and some of the resources are computing or processing functions. For instance, it is possible for a user to scale and convert images through the API by submitting ...
2
votes
1answer
52 views
Are there any RESTful frameworks that do not use HTTP?
OK, so Representational State Transfer
was initially described in the context of HTTP, but is not limited to that protocol.
REST - to contrast it with RPC - follows a slightly different concept ...
2
votes
2answers
146 views
Questions About Consuming Your Own API with OAuth
I'm building a RESTful API for a project I'm working on and I'd like to make the main application consume the API because:
It will result in having one set of code to maintain
Should we decide to ...
2
votes
2answers
214 views
Restful architecture issue with (too many) complex objects
Alright, I've been put in charge of both the server and client (used internally) part of this RESTful architecture. (using restlet).
We've got a resource that exposes the Post operation. Here's a ...
2
votes
2answers
111 views
Is it RESTful to create complex objects in a single POST?
I have a form where users create Person records. Each Person can have several attributes -- height, weight, etc. But they can also have lists of associated data such as interests, favorite movies, ...
1
vote
1answer
22 views
Where should the parameters values be for this REST API and why?
I have the following REST API:
POST /users/martin/notify/...
The API is suppose to notify a list of users that the user Martin has something to say. The list of users to be notified can vary from ...
1
vote
1answer
15 views
Combine old site and new site structures
I want to implement the following:
New site structure, based on new directory path, new PHP framework, DB structure, and so on. The site should be reachable under http://www.mysite.com
Some pages ...
1
vote
1answer
43 views
Datatype not being passed in correctly for Rails 3.1 web service
I have a Rails RESTful web service application that accepts a value from a client to increment the value in the database. The database value is an integer, but when using rspec to test the code, the ...
1
vote
2answers
38 views
RESTful way to trigger server-side events
I have a situation where I need my API to have a call for triggering a service-side event, no information (besides authentication) is needed from the client, and nothing needs to be returned by the ...
1
vote
1answer
53 views
How are URI's handled in a REST api?
I'm creating a hobby iOS app, and I'm a bit confused about how to create a REST backend for it. I've read the resources available on the internet and I understand the theories behind REST. However, ...
1
vote
3answers
53 views
How to make restful calls from server?
Hi i have a restful project and I make rest calls from client side. But for a case I need to make restful calls from server side. How can i do that?
1
vote
1answer
229 views
Spring REST multiple controllers for one URL but different http methods
I currently have one controller that handles both GET and POST for URL groups:
@Controller
public class RestGroups {
...
@RequestMapping(method = RequestMethod.GET, value = "/groups")
...
1
vote
2answers
46 views
MVC Rest and returning views
I'm trying to implement the restful convention on my controllers but am not sure how to handle failing model validation in sending it back to the 'New' view from the Create action.
public class ...
1
vote
1answer
345 views
How can Socket.io and RESTFul work together?
(I'm not familiar to RESTFul, please correct me if my concept is wrong)
In RESTFul architecture, we map every action to an URL. If I click "post a article", may it's actually URL http://example.com/ ...
0
votes
2answers
22 views
Efficient web services using AppEngine
I'm trying to use AppEngine as sort of a RESTful web service. The service is supposed to do simple finds and puts from the Datastore so Objectify seems good for covering that part. It also does a few ...
0
votes
1answer
8 views
Designing related query for implementing a Restful application in Spring 3
I already have an application implemented in Spring MVC 3.0. Now i want to convert this application into a restful application in such a way that bussiness logic remains in one application and web ...
0
votes
1answer
16 views
How to code by contract using RESTful Web Services
Our company as a best practice creates Web Services using a Contract-First approach.
The WSDL is defined before the implementation is considered.
Is it possible to use such an approach using REST? I ...
0
votes
2answers
36 views
Restful API: how to access the api securely?
I have just started reading on implementing RESTful web services and creating RESTful apis. I have understood the basic concept of REST but I have been scratching my head a bit on how I will implement ...
0
votes
0answers
14 views
Ordered services calls (orchestration), jersey Restful web service
I have a set of services available from a Jersey RESTful Web Service. My problem is that i want to specify the order in which those services should be called, and generate error message when a service ...
0
votes
1answer
20 views
Rails — reroute only one of the resource routes
I have a resource called Entries, which has all the normal default RESTful routes that go along with a resource. I want to leave all the routes as they are EXCEPT I want the show action to be ...
0
votes
1answer
35 views
Managing the login information in RESTful web app
In a RESTful application, there's no state maintained between two requests. Each request is treated as a completely new one, even though it would have been sent by the same user. I.e. There's no ...
0
votes
0answers
83 views
video tag html5 with src from base64_encode not work on different device and browser
i try this code.
<video width="320" height="240" controls="controls" autobuffer="autobuffer">
<source src="data:video/mp4;base64,AAAA<?php echo ...
0
votes
1answer
106 views
User Session Management in Restful Web Services in session shared clustered environment
I am trying to setup an control server application with Spring-JPA back-end and Restful web services to expose the back-end methods. My user sessions and authentication/authorization has to be handled ...
0
votes
2answers
77 views
java-ee application with desktop, android and ios clients
I am building an application with java enterprise and glassfish. The information between client and server will usually be small amounts of data, but from time to time the client will need to get a ...
0
votes
1answer
128 views
Validate/Change Password via REST API
I want to change a user password via a REST API. This is not a forgotten or reset password function, but a logged in user wanting to change their password.
The form requires the current password, the ...
0
votes
1answer
114 views
Rails CRUD - Destroy path always routes to the User show page
My view is the users show page
<%= link_to 'Cancel?', {:url => schedule_path,
:id => current_user.schedules[0].id,
:confirm => "are you ...
0
votes
1answer
243 views
node.js RESTful API with amazon like auth
I'm looking to build a RESTful API in node.js and want to authenticate users with an API key and API secret musch like the service in Amazon Web Services (AWS).
The question is where to start, ...
0
votes
0answers
62 views
Books for Implementing Restful Architecture in Ruby on Rails [closed]
Please let me know the best books available for Implementing Restful Architecture in Ruby on Rails.
Would like to know about the various Authentication process other than Basic Authentication and ...
0
votes
1answer
54 views
pyramid_handlers not working
I'm currently moving a project from pylons 1.0 to pyramid.
My problem so far is how to use restful routes in pyramid. Im currently using pyramid_handlers since it did seemed like a good start. I'm ...
0
votes
0answers
42 views
Disabling Cache POST method using Jersy
I am facing a weird problem. I am using RESTFUL Post method and taking a JSON object using JAXB element, it's working fine for some 20-30 requests and then its giving a "java.lang : could not match" ...
0
votes
1answer
41 views
HTTP PUT - enclosed entity be stored under the supplied Request-URI, does that mean Delete and Add?
According to the spec:
The PUT method requests that the enclosed entity be stored under the
supplied Request-URI. If the Request-URI refers to an already existing
resource, the enclosed entity ...
0
votes
1answer
147 views
How do you pass authorization data with an HTTP GET request in a RESTful system?
This is probably the MOST basic question and for some reason but I'm a bit dumbfounded. I am designing a restful service which has multiple pages. Clicking on a link by default fires an HTTP GET
Now ...
0
votes
2answers
51 views
Rails Design Question: How should I structure my controllers for multiple privilege levels?
I am writing a site with multiple levels of privileges. There are basically 3 kinds of users in my system. They are Admin, Business, and Consumers (normal users). Let's just say that I am building an ...
0
votes
0answers
84 views
Need pointers for developing RESTful WebService and Test Client
I followed this tutorial: http://netbeans.org/kb/docs/websvc/rest.html and successfully deployed and tested my RESTful web service (from database) using Netbeans.
When I test this on Mac, Safari ...
0
votes
0answers
35 views
Iphone architecture question with http restful interface
I have an application which has a series of UISwitch which represent the values of different features in a VOIP Platform. For example if Call forwarding is on or off. The information is supplied by ...
0
votes
2answers
40 views
Best way to represent performing an operation on an association in a RESTful way?
Say I have a "user" resource and a "group" resource. RESTful representations of them would look like;
/user/:id
/group/:id
But what if I want to perform an operation on the association between the ...
0
votes
1answer
316 views
how really Cross Document Messaging in HTML5 overcome same-origin policy that apply to XMLHttpRequest?
I am new, I am developing an application that uses distributed resource.
I have one server called "presentation server" which serves everything related to template and ajax application (css, images, ...
0
votes
2answers
178 views
Examples on Zend_Rest_Controller Unit Testing
I have found a bunch of examples how to unit test Zend_Controller, but I'm looking for examples on Zend_Rest_Controller Unit Testing. Any help is really appreciated. Thank you!