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

How do I print XML sended or received in Apache XML-RPC

I'm running a simple client/server XML-RPC app to understand better the Apache XMLRPC library. But I would like to be able to print or debug the XML output that the client sends and the XML received at server. How could I find these data?? …
AndreDurao
  • 5,600
  • 7
  • 41
  • 61
2
votes
3 answers

how can I Pass hashtable like object through xmlrpc-c?

I'm using xmlrpc-c as XMLRPC Client for my C project, my question is how can I pass following parameters to my Remote Procedure Call ? string1, int1, string2, int2, struct (name : age), string3 Here is the cmdline tool of xmlrpc command xmlrpc…
shahjapan
  • 13,637
  • 22
  • 74
  • 104
2
votes
1 answer

Odoo Insert a Sales Order via Web API

I've been trying to insert a sales order via Odoo's web API. The requirement of my clients is that he has an excel file and wants to import his sales order into Odoo. The only way I found was via the Web API. I've been reading and reading sadly did…
Sam
  • 85
  • 3
  • 16
2
votes
2 answers

Powershell and XMLRPC

We are a Windows shop using Powershell extensively.We also have a Spacewalk that I would like to poll some data from as part of the existing Powershell script. Spacewalk API is exposed via XMLRPC. I have spent some time searching for examples on how…
Sergei
  • 387
  • 1
  • 6
  • 16
2
votes
1 answer

How do I create with Java a well formatted request to publish on Wordpress with XML-RPC?

I've found this guide on internet to publish on Wordpress using XML-RPC inside my Java Project, for example I want a message on my Blog, every time it's specified…
user1830223
1
vote
2 answers

Activate wordpress theme remotely for a wordpress blog using ruby xmlrpc/client library

I need to activate theme for wordpress blogs which are present remotely. I thought I will do it with xmlrpc api of worpress http://core.svn.wordpress.org/trunk/wp-includes/class-wp-xmlrpc-server.php, but wordpress does not provide any api method to…
lucifer
  • 275
  • 1
  • 3
  • 7
1
vote
1 answer

How to connect a standalone xmlrpc-client to gwt-enhanced xmlrpc-server?

I have a gwt-application and want to connect to it's xmlrpc backend via a standalone xmlrpc-client (written e.g. with Apaches' xmlrpc-library). Assume the project creates a servlet called TestServlet connected to the URL /test/test providing a…
Johannes
  • 55
  • 4
1
vote
0 answers

How to get Class Variable Value from Python XML RPC Server

Hello I'm new to stackoverflow and to XMLRPC Server in Python: I have a class with the following parameters and i registered the class as a instance in xmlrpc server: The Class: class PacificPowerActiveLoad(PacificPowerLowerLevel): """Main…
Yijian
  • 11
  • 2
1
vote
0 answers

Creating a new post on in wordpress via python and wordress_xmlrpc

I want use python and wordpress_xmlrpc to automate posting on my wordpress site. This is the code that i'm using: import json from wordpress_xmlrpc import Client, WordPressPost from wordpress_xmlrpc.methods.posts import NewPost, GetPosts wp =…
Druz
  • 85
  • 1
  • 11
1
vote
0 answers

xml-rpc returning protocol error 409 conflict

Using a python script for posting articles on WordPress website. That was working fine till few days. Now , its returning error related to 409 conflict. Unable to track the reason as there is no change in code from my side. Traceback (most recent…
1
vote
2 answers

Sending an array in XMLRPC?

I cant figure out whats wrong with this: $message = new xmlrpcmsg('service.RegistrationDetails', array(new xmlrpcval( array('EventId' => new xmlrpxval($EventId, "int"), 'ParticipantId' => new xmlrpxval($usrId, "int")),…
siliconpi
  • 8,105
  • 18
  • 69
  • 107
1
vote
0 answers

TypeError in XMLRPC client

I am trying to consume services from a XMLRPC web service using python. The remote web server require authentication and ssl verification. To do this staff, I implemented a an xmlrpc client using xmlrpc.client as follows: class…
Mehdi Ben Hamida
  • 893
  • 4
  • 16
  • 38
1
vote
1 answer

Why can't xmlrpc client append item to list accessable via xmlrpc server procedure?

Server code (based on Python library reference): from xmlrpc.server import SimpleXMLRPCServer from xmlrpc.server import SimpleXMLRPCRequestHandler class RequestHandler(SimpleXMLRPCRequestHandler): rpc_paths = () server =…
MikeRand
  • 4,788
  • 9
  • 41
  • 70
1
vote
1 answer

Python Wordpress Edit Post

im trying using module python-wordpress-xmlrpc to edit my post title. But error at last line. Dont know 'EditPost' usage. Can someone explain with example? #find allpost 'movie' allpost = client.call(posts.GetPosts({'post_type':'movie'})) #find…
uyin
  • 19
  • 3
1
vote
2 answers

XmlRpcClient cant assign URL address

I have an error while compiling below source code: import java.util.*; import org.apache.xmlrpc.client.*; import org.apache.xmlrpc.common.*; import org.apache.xmlrpc.*; public class pms { public static void main (String [] args) { …