jhgfds
jhgfds

Reputation: 43

RPC for a PHP server and Ruby client?

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

Answers (1)

Wil Moore III
Wil Moore III

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.

  1. DNode for PHP
  2. DNode for Ruby

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:

  1. FRAPI (simple PHP web service development)
  2. Ruby HTTP clients (pick one)

Upvotes: 1

Related Questions