Easiest RPC client method in PHP

Posted by T.K. on Stack Overflow See other posts from Stack Overflow or by T.K.
Published on 2010-04-22T19:08:20Z Indexed on 2010/04/22 19:43 UTC
Read the original article Hit count: 283

Filed under:
|
|
|
|

I've been asked to help a friend's company to bring up a web application. I have very limited time and I reluctantly accepted the request, at one condition. As most of the logic goes on in the back-end, I suggested that I would finish the complete back-end only, allowing a front-end developer to simply interface with my backend.

I plan to do the back-end in Java EE or Python (with Pylons). It does not really matter at this point. I plan to have my back-end completely ready and unit-tested, so that my input will hardly be needed after my work is done.

I know they have a PHP programmer, but as far as I could tell he is a real rookie. I want him to basically interface with my backend's services in the easiest possible way, with no way of him "stuffing" it up. It's basically a CRUD-only application.

I could implement the backend as accessible through a webservice such as XML-RPC or SOAP. Even a RESTful API could be possible.

However, my main objective is to make something that complete "noob" PHP programmer can easily interface with without getting confused. Preferably I do not even want to talk to him because I generally have an extremely busy schedule, and doing "support calls" is not something I am willing to do. Which approach should I choose? I would welcome any suggestions and inputs!

© Stack Overflow or respective owner

Related posts about php

Related posts about rpc