Reputation: 43
I have a ruby web front end, and a php backend that i am developing. I am looking for some client server RPC implimentation that will work in ruby and PHP. I have tried msgpack to make RPC calls, but it doesent work, and i cant seem to get any support on it.
Can anyone recommend a simple RPC implementation that works in this instance?
Upvotes: 1
Views: 230
Reputation: 7204
You've asked specifically for RPC so I will provide you with an answer to that; however, I will follow-up with a recommendation.
If you are not specifically tied to using RPC messaging, you might think about providing an JSON HTTP Web Service via PHP and consume that service via Ruby:
Upvotes: 1