Questions tagged [xmlrpcclient]

XML-RPC Clients make remote procedure calls to the XML-RPC servers.

XML-RPC Clients are responsible for making remote procedure calls to XML-RPC servers via the HTTP transport. Usually, the procedure call contains certain parameters with particular structure. Once an XML-RPC client executes a remote procedure on the XML-RPC server, structured data is returned from the server to the client.

In addition to that, usually, XML-RPC clients are responsible for translating objects from the programming language of the client to XML so they are ready for procedure calls.

XML-RPC clients have been implemented and are being maintained in various languages - Java, C++, C#, PHP, Ruby, Node.JS and many others.

89 questions
1
vote
1 answer

How to wrap a xmlrpc function call?

I have a simple xmlrpc server defined as (server.py): from SimpleXMLRPCServer import SimpleXMLRPCServer def foo(): return "foo" server = SimpleXMLRPCServer(("localhost",…
Alex
  • 41,580
  • 88
  • 260
  • 469
1
vote
0 answers

How to display XMLRPC client's array values in a third party website , after got response from the XMLRPC server?

I've created a XMLRPC webservice using Codeigniter. I've got response from XMLRPC Server correctly. But I want to list the response values in a third party website. I get response as array values. I've added the XMLRPC client result below, sample…
Balaji Kandasamy
  • 4,446
  • 10
  • 40
  • 58
1
vote
1 answer

How to use Ruby's XMLRPC::Client::new3

I'm trying to sort out how to use the new3 method of the XMLRPC::Client class. This is what I have: #!/usr/bin/ruby require "xmlrpc/client" params = { host: "https://192.168.1.2", path: "rpc/api", port: "443", proxy_host: "", proxy_port:…
theillien
  • 1,189
  • 3
  • 19
  • 33
1
vote
1 answer

XMLRPC Java Android Client

I downloaded the XMLRPC client project and try to initialize a connection to my XMLRPC server. I set up a local server for testing and use http://10.0.2.2:8080/OpenConf_Server-0.0.1/ to call the rpc. Each time I'm calling my test method, that only…
sebbl.sche
  • 321
  • 1
  • 4
  • 20
1
vote
2 answers

Cancel xmlrpc client request?

Is it possible to somehow cancel xmlrpc client request? Let say that in one thread I have code like: svr = xmlrpclib.ServerProxy('http://localhost:9092') svr.DoSomethingWhichNeedTime() I don't mean some kind of TimeOut... Sometimes from another…
Adam
  • 2,254
  • 3
  • 24
  • 42
0
votes
1 answer

How to implement on localhost xml_rpc client in PHP?

Hello i have somme problems to write a simple XML-RPC client in PHP. This is my PHP code: $site_name = "Mikangali"; $site_url = "http://www.mikangali.com"; $site_url = "http://localhost"; $request =…
0
votes
2 answers

XMLRPC IP.Board could not locate an API module called

I have a case: make work with forum by API fo Forum Engine IP.Board. So i wrote next code: package ru.test; import java.net.MalformedURLException; import java.net.URL; import org.apache.xmlrpc.XmlRpcException; import…
Dmitry Nelepov
  • 7,246
  • 8
  • 53
  • 74
0
votes
1 answer

Proguard XmlRpc and Javac Parser

I'm getting an error in the release version of my app. java.lang.NoSuchMethodError: No virtual method getXMLReader()Le9/k; in class Ljavax/xml/parsers/SAXParser; or its super classes (declaration of 'javax.xml.parsers.SAXParser' appears in…
Akbar Sukku
  • 31
  • 1
  • 4
0
votes
0 answers

How to authenticate before doing any action with Hieu Le XMLRpc Client

I am testing following Wordpress XML-RPC PHP Client https://github.com/letrunghieu/wordpress-xmlrpc-client I have 3 sites where I post remotely, however if the password on one site is wrong it gives Fatal error and stops the PHP execution, I want to…
0
votes
0 answers

Unable to authenticate Odoo8 db wirh XMLRPC in Odoo14

I am trying this simple code and below error comes while getting uid url = 'http://localhost:8071' db = "db8aaa_19sep22" username = "admin" password = "Admin@347" common =…
M Tahir Noor
  • 443
  • 2
  • 10
  • 31
0
votes
1 answer

Make a curl request for xml_rpc c++ server

I am trying to make a curl request for a c++ xml-rpc server. After a bit of reading, I came to know the xml-rpc request using curl will look like this curl --connect-timeout 10 -d' ' -H 'Content-type:text/xml' https://
BhanuKiran
  • 2,631
  • 3
  • 20
  • 36
0
votes
1 answer

Odoo 14 API - No module named xmlrpc.client

Hello i'm trying the External API of Odoo so i'm trying something but i have an error when i try to launch my main.py. import xmlrpc.client info = xmlrpc.client.ServerProxy('https://demo.odoo.com/start').start() url, db, username, password = \ …
Gabin
  • 61
  • 8
0
votes
1 answer

Migrate from XML-RPC to REST

I'm using JAVA and I must convert every single XML-RPC call to a REST one. How do I do it? I'm using KEAP (previously known as "Infusionsoft") as CRM. I have a lot of calls like this one: Object[] objects=(Object[])…
Unearthly
  • 121
  • 6
0
votes
1 answer

How to solve "'xmlrpc.client' not found since 'xmlrpc' is not a package" problem?

This is probably very stupid, but I am stuck with this: I did a Python script, with only the following lines: #!/usr/bin/python3 import xmlrpc.client When executing it, I get this error: ModuleNotFoundError: No module named 'xmlrpc.client';…
forvas
  • 9,801
  • 7
  • 62
  • 158
0
votes
1 answer

Using bugzilla webservices in PHP

I want to use the bugzilla webservice APIs in PHP. The issue seems to be the XML-RPC client. I have gone through similar questions, but dont want to install the whole Zend framework only for the client. Is there a way to separate out the Zend…
pinaki
  • 5,393
  • 2
  • 24
  • 32