I have two servers on PHP that need to communicate, calling remote methods of each other. XML-RPC for PHP is not very good solution because it's very slow, and I can't call multiple methods in one request.
I need it to be secure, and simple using GET/POST require to every time configure tunneling scripts, but I need dynamic calling of custom remote methods.
SeniorDev
2010-10-08 15:02:41
You never mentioned tunnelling (securing the connection is trivial) but regardless, that should not have significant impact. But maybe you should look at a message queuing system like rabbitmq
symcbean
2010-10-08 15:17:33