Hi all, I need to retrieve some information from drupal site A to drupal site B.
I have installed services and xmlrpc services module
If I try to connect with same server machine (A -> A) all works. If I try to connect with remote server machine (B .-> A) I received this error:
object(stdClass)#4 (3) { ["is_error"]=> bool(true) ["code"]=> int(-111) ["message"]=> string(18) "Connection refused" } bool(false)
This is my xmlrpc string:
$result = xmlrpc('http://www.MYSITE.it/services/xmlrpc', 'system.connect','www.MySITE.it','KEYS_A');
I have a KEYS_B for site B.
Where is my error ?
M.