Questions tagged [xml-rpc]

XML-RPC is a communication protocol that allows for remote procedure calls by utilizing XML encoding for its messages and HTTP for data transport.

Fetch data from XML-RPC using PHP

I need to extract data from a table and display it in a list using a PHP script. $url_obj='http://'.$host.':8069/xmlrpc/object'; $sock=new xmlrpc_client($url_obj); $msg=new xmlrpcmsg('execute'); $arrVal=array('user_id&ap ...

Guide to integrating Gandi.Net API with Node.js in server.js

I'm a beginner in Node.Js and I'm currently working on creating a Mean Stack application. One of the things I need to do is call a 3rd party API, specifically Gandi.Net, from my Node.js code. My Node.Js and Express Application are being used to ...

Creating a PHP server to handle XMLRPC requests without using any built

I need to develop a pingback script for our website, but unfortunately 1&1 does not have the necessary XMLRPC extension installed. Is there another way to create a pingback/trackback script without relying on this extension? Are there any demos availa ...

Repeating promises in Node.js through recursive execution

Here is a function that allows you to create a new folder on the server using xmlrpc: var createFolder = function(folder_name) { var defer = Q.defer(); client.methodCall('create_folder', [sessionID, folder_name], function(err, resp) { if ...