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
0
votes
0 answers

xml rpc client and server

i tried to connect this xmlRPCClient code with this server but it didn't work even i sued the same localhost and called the right user .. I'm using python3 to get finally a method to login for a wireless-hart manager .. I would like to see the…
0
votes
1 answer

automatic post data from other web to odoo

I have to get data from other web using python and post that data to odoo, is that possible? I already tried to create records in python like documentation in odoo, but I don't think it can automatically, my goal is to post data from that web to…
Nyan
  • 13
  • 4
0
votes
1 answer

Python XML-RPC Export Import Program

I am trying to pass a many2one field to another database. Right now my program is using xmlrpc to get into a database and fetch data from a table called product.template and then creates a csv. The field that I want to pass returns "[54, 'PARTS /…
0
votes
1 answer

Example of XMLRPC interface API with BUGZILLA

How to access Bugzilla bugs with XMLRPC interface. What .py and .XML contains. bugzilla server URL api methods
0
votes
1 answer

how to get specific post by its title using wordpress xml-rpc?

I checked all wordpress xml rpc methods, but they all require post_id to get the post. How can I get a post using its title? Or, is there a rpc method to get post_id from title so that I can get the post by post_id later? Thanks!
peter
  • 379
  • 2
  • 6
  • 16
0
votes
1 answer

How to add Notes of a contact with Infusionsoft CRM API in Java

In Infusionsoft CRM, there is a field of a contact named as "Notes" to add note for a contact. I was able to create a contact, search or update using xml-rpc protocol, Java. I tried to add notes in the following way (my code below) but couldn't. How…
user404
  • 1,934
  • 1
  • 16
  • 32
0
votes
2 answers

JAVA XmlRpcClient

I am using this code to connect server, but get error: pms.java:25: error: cannot find symbol server.setconfig(config); enter code here ^ symbol: method setconfig(XmlRpcClientConfigImpl) location: variable server of type…
0
votes
1 answer

400 Bad Request error when using XMLRPC and RoR (3.1, 1.9.2) to post to a wordpress installation

I am attempting to post a blog post to a wordpress blog using XMLRPC. Here is the code I am using: def post(article) my_new_blog_post = { :description => article.article_texts.last.content, :title => article.article_title, …
Dave G
  • 4,376
  • 4
  • 25
  • 28
0
votes
0 answers

Connecting the url to host

The specified url to be connected to the web using the xmlrpc. In this I use the Apache library Exception in thread "main" java.lang.IllegalStateException: connect in progress at …
sree
  • 9
  • 6
0
votes
2 answers

how can I distribute xmlrpc-c library with my project?

in my C project I've referenced xmlrpc-c library from sourceforge.net in order to use xmlrpc-client. my question is how can I distribute this library so other users don't need to download/install package from internet. If its possible that I can…
shahjapan
  • 13,637
  • 22
  • 74
  • 104
0
votes
3 answers

How to include simple xmlrpc_client library in my simple php project

I have a simple PHP project which has xmlrpc.php-file in php language library. When I execute a file with new xmlrpc_client($this->auth_service_url); it shows Class 'xmlrpc_client' not found Can someone help me?
user3860618
  • 137
  • 2
  • 12
0
votes
1 answer

can't import six.moves.xmlrpc_client in python 2.7

Environment: CENTOS 7 my code: import six.moves.xmlrpc_client as xmlrpclib output: ImportError: No module named xmlrpc_client python interpreter: [root@dhcppc0 devstack]# python Python 2.7.5 (default, Nov 20 2015, 02:00:19) [GCC 4.8.5 20150623…
masber
  • 2,875
  • 7
  • 29
  • 49
0
votes
1 answer

Fault: No Attribute in xmlrpclib.py

I'm working on an application in which a server and client are being created; the ServerAPI is using SimpleXMLRPCServer and the ClientAPI is using xmlrpclib. The client is initiated with: class w_Client: def __init__(self, ServerIP,…
0
votes
1 answer

Fatal error: Uncaught exception 'XML_RPC2_FaultException' with message 'Error on object : OBJECT_ACCOUNT (CAUSE_NORIGHT) [Invalid API key]

I am trying to use my test API key to create a new test domain and I receive an 'invalid key error. I can execute the version check code, but not domain code?
0
votes
3 answers

NoClassDefFoundError: org.apache.xmlrpc.client.XmlRpcClient

I've started developing with XML-RPC in Android but since I've added the JAR files I keep getting this error when I click on my button: java.lang.NoClassDefFoundError: org.apache.xmlrpc.client.XmlRpcClient I always get it when I click on the button…
Yenthe
  • 2,313
  • 5
  • 26
  • 46