1
vote
2answers
28 views
Working example Zend_Rest_Controller with Zend_Rest_Client ?
Hi ,
iam trying to write an short Rest Service with Zend Framework. But the documentation is not the best at this Part.
I have an ApiController extended Zend_Rest_Controller with all needed abstract …
0
votes
2answers
63 views
Method to handle “killed” Java jobs?
Our server web app will handle jobs that are requested by REST API requests.
Ideally if the server dies during a job (ie: plug pulled), the job should resume or restart at startup.
A very …
0
votes
2answers
22 views
Need Standard Approach to create a SOAP interface for a deployed REST service
We want to allow our enterprise of service providers to deploy REST or SOAP solutions. These services will become candidates as an "authoritative" service endpoint for a specific request made by a …
2
votes
2answers
53 views
Tips for designing a minimalist data store suitable for an embedded device.
I am trying to design a data store implementation like SQLite, BerkeleyDB or CouchDB suitable for a small embedded computer platform. The main criteria is minimal bloat and simple API.
I could not …
2
votes
3answers
87 views
Does anyone know of an example of a RESTful client that follows the HATEOAS principle?
So by now I'm getting the point that we should all be implenting our RESTful services providing representations that enable clients to follow the HATEOAS principle. And whilst it all makes good sense …
2
votes
5answers
133 views
How to prevent concurrency in web service API?
We have three web services (/a, /b, /c) where each service maps to a method (go()) in a separate Java class (ClassA, ClassB, ClassC).
Only one service should run at the same time (ie: /b cannot run …
3
votes
4answers
53 views
Why is squid good for REST architectures ?
In this article, it is argued that Use Memcache if you frequently fetch random entities from a database, and Squid if you use a REST architecture. Please explain why (with regard to Squid).
0
votes
4answers
154 views
Create dynamic xml and send it with php class
Hello,
my question is how I can send clean xml from this class.
It is simplified, so there is the least off trouble that could have been caused by other things.
The problem now is that the error says …
0
votes
1answer
48 views
Is using URL query string variables still RESTful
I'm presented with a problem of using query string variables in a RESTful Asp.net MVC application. Does that violate the RESTful pattern?
The thing is that Asp.net MVC uses default route like:
…
2
votes
2answers
274 views
CDN options for image resizing
Background:
I working on an application on Google App Engine. Its been going really well until I hit one of their limitations in file size -- 1MB. One of the components of my application resizes …
1
vote
2answers
960 views
Spring 3.0 REST implementation DispatcherServlet cannot find mapping
Hi,
I'm trying to get a simple REST service to work with Spring 3.0 but keep bumping into a blocking error:
No mapping found for HTTP request with URI [/travel/us/nyc/sfo/20091010/1122/true/] in …
3
votes
6answers
303 views
How to restrict JSON access ?
I have a web application that pulls data from my newly created JSON api.
My static HTML pages dynamically calls the JSON api via JavaScript from the static HTML page.
How do I restrict access to my …
0
votes
4answers
146 views
Implementing RESTful web service
Hello,
I have a requirement to create RESTful web service.
I have narrowed down on 'Restlet' for the web service implementation.
Can someone tell me the clear pro's and con's of using Restlet and …
1
vote
3answers
43 views
Mimetypes for a RESTful API
The Sun Cloud API at http://kenai.com/projects/suncloudapis/pages/Home is a good example to follow for a RESTful API. True to RESTful principles, when you GET a resource you get no more nor less than …
0
votes
3answers
22 views
How to model parent-child entities via REST and JAX-RS
I am working on a REST based API, and having some trouble figuring out what the canonical way is to represent parent / child relationships. (I am writing beans in CXF and using JAX-RS and JAXB. I …
