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
1 answer

How to set UTF-8 encoding with XMLRPC client library

I'm using XMLRPC client to call Adestra API services. Currently I'm having problems inserting Bosnian letters č, ć, ž, đ, š. I configured my XMLRPC client to work with UTF-8, but still having problems. Here my code sample: //******* LOGIN…
MrD
  • 2,423
  • 3
  • 33
  • 57
0
votes
2 answers

Groovy Integer can not be cast to Object[]

I am working with a groovy script in SoapUI and I need to make a XMLRPC call to a server. I am using groovy.net.xmlrpc.XMLRPCServerProxy for this and invokeMethod needs a parameter as an object. The example that I am trying to use need an integer as…
Erki M.
  • 5,022
  • 1
  • 48
  • 74
0
votes
1 answer

Performing DokuWiki search with PHP XML-RPC

I have a simple service that wraps DokuWiki calls (https://www.dokuwiki.org/devel:xmlrpc#accessing_the_xml-rpc_interface) made via the PHP XML-RPC library. I am attempting to perform a DokuWiki search but cannot seem to get it it to work. Here is…
dtg
  • 1,803
  • 4
  • 30
  • 44
0
votes
1 answer

send post request to xmlrpc server using codeigniter

My client side: load->library('xmlrpc'); …
Mubarak
  • 183
  • 3
  • 18
0
votes
2 answers

Is there a way to view the actual XML produced and received by the xmlrpc-c library?

I've got a system where some C++ code (using xmlrpc-c) talks to a Java servlet which uses the Apache XML-RPC library. I've got a problem that would be a whole lot easier to resolve if I could view the actual XML being sent back and forth. Is there…
AndrewR
  • 10,759
  • 10
  • 45
  • 56
0
votes
1 answer

Please help porting xmlrpc java syntax to python

I'm trying to workout how to use org.apache.xmlrpc.client.XmlRpcClient in python. I'm using code in https://github.com/mcasperson/vaultdemo/blob/master/src/main/java/com/redhat/ecs/App.java : final XmlRpcClientConfigImpl config = new…
Tomas D
  • 103
  • 2
  • 10
0
votes
1 answer

XMLRPC call error

I'm having problem during XMLRPC call. The code is following: $msg = new xmlrpcmsg( "contact.search", array( //Set user id new xmlrpcval($tableID, "int"), new xmlrpcval( array( "email"=> new…
MrD
  • 2,423
  • 3
  • 33
  • 57
0
votes
1 answer

How to customize an xml request using XmlRpc-Client

I've got this issue: I'm trying to send a custom xml request using the XmlRpc-Client from Apache. I got an instance of XmlRpcClient and it contains some methods called "execute " and look like this: public class RPCClient { public static void…
0
votes
1 answer

Suppressing / controlling logging in org.apache.xmlrpc.XmlRpcClient?

I have inherited some Java code that does some testing of our XMLRPC server. So far so good. Part of that code deals with stopping the server (a few repetitions of "check if server still there and if so send it command to shut down"). As the server…
HD.
  • 2,127
  • 1
  • 18
  • 15
0
votes
1 answer

XmlRpcClient parse response with multiple Variable types

I'm using XmlRpcClient to connect to a XML-RPC server In the response to my request in the XML response I will get: int cpuLoad, String fanStatus, String fanStatusWorst, String temperatureStatus, String temperatureStatusWorst, String…
gogasca
  • 9,283
  • 6
  • 80
  • 125
0
votes
2 answers

Create a list from a string representing a list

Possible Duplicate: How do I parse a string representing a nested list into an actual list? How could I get a list of errors from this string? >>> out = ":[u'Error 1', u'Another error']" I tried using the json…
Paolo
  • 20,112
  • 21
  • 72
  • 113
0
votes
1 answer

CORS XMLRPC via mimic.js

Scenario: I have a webpage that needs to make XMLRPC calls from Javascript, and uses mimic.js to do so. The XMLRPC server is written in python, based on SimpleXMLRPCServer. When the webpage and the server are on the same machine, all is well. If…
Scott Hunter
  • 48,888
  • 12
  • 60
  • 101
-1
votes
1 answer

Spring doesn't initialize autowired DAO bean in service under XML-RPC controller

guys. I have one question for you. I am implementing the login application that has XML-RPC controller for resolving requests and service (implements Spring Security UserDetails Service) for login implementing. The data for user login is stored in…
-2
votes
1 answer

How to put variables in c# attributes?

I am trying to create a xml-rpc client application using c#. However I need to make host address a variable. I am fairly new to c# and having difficulties when trying to add variables in attributes. using CookComputing.XmlRpc; public struct…
1 2 3 4 5
6