Questions tagged [xml-rpc]

XML-RPC is a remote procedure call (RPC) protocol which uses XML to encode its calls and HTTP as a transport mechanism.

XML-RPC is a means of encoding RPC requests in XML and sending them over HTTP. The use of XML as the intermediate language allows nesting of parameters into maps and lists, thus larger structures can be transported. Therefore XML-RPC can be used to transport objects or structures both as input and as output parameters.

In comparison to REST, where resource representations (documents) are transferred, XML-RPC is designed to call methods. You can find the homepage here.

1709 questions
0
votes
1 answer

XML-RPC read by external id

I have a scenario here in which I need to read/retrieve elements from openerp/odoo by external id using xml-rpc. The technology which I am using is php. Here is my code function of the read/retrieve of data from odoo: public function read($ids,…
0
votes
1 answer

Android XMLRPC Fault Code

We have been using XMLRPC for android and it was working well until we got our hands dirty with Base64 encoding for byte[] (images) -- (we did base64_string.replace("/","$$") for transmission). We have tried undoing the changes and its looking like…
Sameer Segal
  • 21,813
  • 7
  • 42
  • 56
0
votes
1 answer

XML-RPC Interface Feature is not available in Bugzilla

I am new to Testopia and I want to integrate Testopia with Jenkins for which I am using Testopia Plugin(https://wiki.jenkins-ci.org/display/JENKINS/Testopia+Plugin).But I am not able to access the XML-RPC of bugzilla through Jenkins. I have tried…
RCBian
  • 1,080
  • 2
  • 20
  • 31
0
votes
1 answer

Issues when adding a xml content with UTF-8 characters to an eXist-db collection using Perl

I am trying to add dynamically generated XML content to a eXist-db collection (see the code below addFile.pl) using Perl, the issue is that whenever the content contains UTF-8 characters I receive the error Failed to parse XML-RPC request: Byte…
richardtk_1
  • 751
  • 3
  • 11
  • 33
0
votes
2 answers

drupal using node.save with XMLRPC call to another site. "Access Denied" message

I have a piece of code on 1 drupal site to create a node another drupal site in a multi-site setup. It looks like I'm getting the sessionid and logging in just fine, but when trying to create a "page" node, I get "Access denied". Under Services ->…
EricP
  • 1,459
  • 6
  • 33
  • 55
0
votes
2 answers

Expose DB2 data as XML / Query DB2via XML

I have a client who has a sort of data warehouse stored in DB2. For a variety of reasons, the data must remain on this platform. The client is considering implementing an open-source CMS (Drupal) which runs in MySQL. The client needs to be able to…
Anthony Gatlin
  • 4,407
  • 5
  • 37
  • 53
0
votes
1 answer

Calling a .net method from odoo

I know that with XML-RPC we can call some odoo methods (like search, execute, ...) from .Net application. But is there any way to do it other way around, means calling .Net application methods from odoo with XML-RPC?
Ali Abdi
  • 148
  • 7
0
votes
2 answers

Which XML-RPC library do you recommend for Android?

I need to make my client talk to a XML-RPC service. I found a couple of interesting ones on the web like android-xmlrpc. Have you used any such libraries in your code? Which library do you recommend?
unj2
  • 52,135
  • 87
  • 247
  • 375
0
votes
1 answer

PHP Zend XML-RPC - Any way to disable the 'nil' in requests?

I'm using Zend XML-RPC Client library to send XML requests to another non-PHP XML RPC server.(it's a java JBoss install, but I don't have control to change it/patch it/hack it). One request I'm making has a element, which is a XML-RPC…
Amandasaurus
  • 58,203
  • 71
  • 188
  • 248
0
votes
1 answer

How can I reference a repeated block of text in an XSL XML file?

In the example XSL transformation file below, the "record" and "event" templates are almost identical. They have some distinct text at the top and bottoms of the templates, but there is repeated text in the middle that is identical for the two. Is…
Kiloman
  • 47
  • 6
0
votes
1 answer

How to call a specific, unknown Python object attribute?

I'm working to create a simple Python script that will ultimately tell you how many blog entries were posted in a given month, and the pyblog app is proving very helpful. However, when I create the blog object, I don't know how to access it's…
Michael Morisy
  • 2,495
  • 2
  • 23
  • 26
0
votes
2 answers

Help with XML-RPC server

I'm now trying to create a xml-rpc server with the CodeIgniter Framework. load->library('xmlrpc'); $this->load->library('xmlrpcs'); $config['functions']['weblogUpdates.ping'] = array('function' =>…
ThoKra
  • 2,959
  • 2
  • 27
  • 38
0
votes
1 answer

python wordpress xmlrpc. How to pass variable to wp.call

its all about wordpress_xmlrpc for python lets start with code: wp1 = Client('http://example.com/xmlrpc.php', 'username1', 'pass1') wp2 = Client('http://example.com/xmlrpc.php', 'username2', 'pass2') this works fine when I try to add new…
Krystian
  • 31
  • 3
0
votes
2 answers

Codeigniter XML-RPC Response Multi Dimensional Array Approach

I need to create an XML-RPC server that gets cities with their corresponding IDs. What I do as a response is looking weird to me because of unnecessary duplicate entries but I couldnt find a better way. Array ( [cityID] => Array …
dreamend
  • 59
  • 4
  • 19
0
votes
1 answer

Use Flask XML-RPC with HTTPAuth?

I am using the Flask XML-RPC extension and everything is working well. Now I want to protect the XML-RPC endpoint with a basic HTTP authentication using Flask HTTPAuth extension. This extension is usually used with routes, but the XML-RPC endpoint…