Reputation: 1889
Would you be able to use the Java Restlet RESTful API to interface with some provider's API that is written in PHP?
If so, by what means is this done?
More specifically, for anyone who has used the Restlet API, do you know of any particular packages or classes intended for this use?
Upvotes: 0
Views: 387
Reputation: 8411
RESTfull web services are designed to be language independent. Most people use JSON as way of communication with REST. And this makes the whole thing language independent.
There is no reason why your Java RESTful API shouldnot work with PHP REST API.
Upvotes: 1