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
18
votes
2 answers

How to install xmlrpclib in python 3.4?

When I am trying to install xmlrpclib, I am getting following error in python version 3.4 Downloading/unpacking xmlrpclib Could not find any downloads that satisfy the requirement xmlrpclib Some externally hosted files were ignored (use…
James
  • 347
  • 1
  • 4
  • 13
10
votes
2 answers

logging input/output xml in apache xmlrpc client

I'm building an xmlrpc client with Java using Apache xmlrpc, but couldn't figure out how to log the input/output xml (the raw data received and sent). How do I do this? Thank you
ndriks
  • 359
  • 6
  • 16
9
votes
1 answer

How to see traceback on xmlrpc server, not client?

I have simple xmlrpc server code: from SimpleXMLRPCServer import SimpleXMLRPCServer port = 9999 def func(): print 'Hi!' print x # error! print 'Bye!' if __name__ == '__main__': server = SimpleXMLRPCServer(("localhost", port)) …
Adam
  • 2,254
  • 3
  • 24
  • 42
4
votes
1 answer

cannot access XmlRpcController ,XmlRpcHttpRequestConfig

I want to send data(just a name for name) to my OpenErp (Odoo 9 ) through my Android application . I create a module that i inserted successfully in my Odoo Account ,tht only have the field "name" . but i have this problems in Android Studio :…
Steven7
  • 47
  • 1
  • 8
3
votes
2 answers

Communication between Java programs with non-JDK objects

I'm looking for a communication channel between two java programs running on the same machine. I've found a few options (RMI and XML-RCP) but none of the examples that I found show exchange of objects wich class it's non-primitive and not know on…
rnunes
  • 2,785
  • 7
  • 28
  • 56
3
votes
1 answer

Custom HTTP headers with XmlRpcClient

I was wondering if anyone knows how to send custom HTTP headers using an XmlRpcClient in Java? I see a custom header can be set using XmlRpcHttpTransport.setRequestHeader() but I don't see a way of tying this in with the XmlRpcClient itself.
Genesis
  • 8,038
  • 3
  • 21
  • 22
3
votes
1 answer

Php xmlrcp client get rtorrent info

I need to create simple php script for getting some information of my rtorrent instance ... i try a lot of code but i never give a responce ... this is my last test ini_set('display_errors', 1); error_reporting(E_ALL); function do_call($host,…
user1740962
  • 111
  • 2
  • 16
3
votes
2 answers

python xmlrpc.client.ServerProxy - how to specify local port range

Is there an easy way to specify the source port range the xml-rpc client connection should originate from? Let's suppose there is a firewall between the client and xml-rpc server which passes traffic to the server only from specific sockets…
Mr. Girgitt
  • 2,853
  • 1
  • 19
  • 22
3
votes
1 answer

Python: How to get data from chunks of file over xml-rpc

I am creating a software for downloading movie subtitles using OpenSubtitle API in Python. The API implements XML-RPC protocol. According to API documentation, to download a subtitle from site database, the following method is used: array…
Robins Gupta
  • 3,143
  • 3
  • 34
  • 57
3
votes
0 answers

Java XML RPC date iso 8601 with timezone

I am having a hard time trying to make a web service client work. It is a XML RPC specification. I am using Apache WS XML-RPC library, which I find full of holes that causes problem due to Serialization. I have to send a Date parameter for the…
JCB507
  • 39
  • 6
3
votes
1 answer

How to get the output of XMLRPC server (Python 2.7.3)?

I got XMLRPC server/client from python website. When I run simple methods like pow(),add(),div() from Windows, the client gets the result correctly. However, when I run brocade() which gets the configuration information from Brocade switch using…
spark
  • 531
  • 6
  • 17
2
votes
1 answer

XMLRPC showing -32601 error (using PHP)

I have the following code... "…
Leo
  • 469
  • 1
  • 7
  • 16
2
votes
1 answer

I have been trying to fetch data from XMLRPC client

This is a piece of code I wrote. I have trouble accessing data from Promise for later purposes. function forgotPassword(params) { return new Promise(function (resolve, reject) { return client.methodCall('forgotPassword', params, function…
TheGhoul27
  • 29
  • 3
2
votes
0 answers

C# - xml-rpc with a single method and 2 named param

This is a refined and focused question that I asked last week about a project I am working on to use the web service http://www.upcdatabase.com via xml-rpc .net. I am working in c#. The request requires a named method (“lookup”) as well as 2 named…
JRB
  • 247
  • 1
  • 5
  • 12
2
votes
0 answers

Xml Rpc Exception on response

I am making a Apache xml rpc client call to xml server (Client version - 3.1.2 & server at 3.1.4) When client call happens,i am getting runtime error : [ XML_RPC, CLIENT ] XmlRpcClient failed to execute a transaction, cause: ClassCastException…
tarun
  • 218
  • 2
  • 11
1
2 3 4 5 6