Questions tagged [xml-rpc]

XML-RPC is a remote procedure call (RPC) protocol which uses XML to encode its calls and HTTP as a transport mechanism.

XML-RPC is a means of encoding RPC requests in XML and sending them over HTTP. The use of XML as the intermediate language allows nesting of parameters into maps and lists, thus larger structures can be transported. Therefore XML-RPC can be used to transport objects or structures both as input and as output parameters.

In comparison to REST, where resource representations (documents) are transferred, XML-RPC is designed to call methods. You can find the homepage here.

1709 questions
0
votes
1 answer

XML-RPC over SSL with Ruby: end of file reached (EOFError)

I have some very simple Ruby code that is attempting to do XML-RPC over SSL: require 'xmlrpc/client' require 'pp' server = XMLRPC::Client.new2("https://%s:%d/" % [ 'api.ultradns.net', 8755 ]) pp server.call2('UDNS_OpenConnection', 'sponsor',…
Mike Conigliaro
  • 1,144
  • 1
  • 13
  • 28
0
votes
1 answer

Difference Between xmlrpc and apache thrift

I need to know the difference between the xmlrpc and apache thrift. Which one is speed and ease to use.
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
0
votes
2 answers

Silverlight Line Chart From XMLRPC Data Source

I'm trying to create a Silverlight line chart from an XMLRPC data source (coming from Drupal), what steps do I need to take? Is there a step by step tutorial anywhere on how to do this?
0
votes
1 answer

J2Bugzilla Fatal Error parsing server response - methodResponse

I updated a product in my Bugzilla server, inserting some new components and deleting others. After that, everytime I try to run a code that retrieves these components, I get the following error: An unknown error was encountered; fault code: 0 :…
0
votes
1 answer

XMLRPC Response Using ws-xmlrpc

Anyone have experience parsing complex response types using ws-xmlrpc? The Service returns a HashMap with one of the values an Array, when I request the key of the Array from the HashMap, Java just returns java.lang.Object. How do I access the…
Dave
  • 133
  • 1
  • 2
  • 9
0
votes
1 answer

Proper XML multicall

i want to send a multicall to Rtorrent Rpc instead of some singlecalls, therefor i need to know how to format my xml call. At the moment my test xml call looks like that: ("
Olias
  • 17
  • 6
0
votes
1 answer

How to change the timeout only for some specific XML-RPC calls

I'm using the XML-RPC for C/C++ (over CURL) client library in version 1.25.23 to: send data to ... and receive (poll) events from ... ...XML-RPC application server. To reduce the data traffic (while polling the events) i'm trying to implement…
maxw
  • 123
  • 1
  • 8
0
votes
1 answer

method with miltiple args - xml-rpc

I have problem with method with multiple arguments in XML-RPC application. Actually, i have method that sums numbers... and when i'm declaring this method like this: public Integer echo(int x, int y){ return new Integer(x+y); everything works…
madg34
  • 44
  • 1
0
votes
1 answer

XMLRPC in android error extra parameter

I have problem with XMLRPC when I pass parameter to invoke server. JSONObject s_profile = new JSONObject(); s_profile.put("token", tokenId); s_profile.put("lname", Fname.getText().toString()); s_profile.put("lname",…
thanh duc
  • 189
  • 2
  • 8
0
votes
1 answer

How to connect to Microsoft Word's Blog Posting Mechanism

I'm wondering if anyone knows where I can find documentation on how to integrate with Microsoft Word's new blog publishing service (example here - http://www.howtogeek.com/169119/how-to-create-a-blog-post-using-microsoft-word-2013/). I'd like to…
pharophy
  • 771
  • 2
  • 8
  • 16
0
votes
0 answers

Xml-Rpc.Net Server Method Missing Params with Optional Parameters

Is it possible with CookComputing's XmlRpc.Net to configure a server to ignore the missing element when the server method has a params object[] args parameter? I have a server method with something like the following…
Jaymz
  • 6,140
  • 2
  • 26
  • 30
0
votes
1 answer

Odoo How to develop a workflow in php for the invoice in XML-RPC?

I try to push my invoice of my ecommerce platform to odoo. (php - xml-rpc) The invoice is created but I haven't find how to create a workflow to change the status in Odoo. I found something on internet but I think it's for old and it' doesn't work…
Kurama
  • 37
  • 1
  • 16
0
votes
1 answer

Wordpress XML-RPC call from Objective C: wp.newComment

I'm using Eric Czarny's Cocoa XML-RPC framework to make a call to the Wordpress API's. I've downloaded the sample app from Wordpress which gives some good examples. Unfortunately the good examples are for every call EXCEPT wp.newComment. I'm…
radesix
  • 5,834
  • 5
  • 24
  • 39
0
votes
1 answer

Connecting to Python XML RPC from the Mac

I wrote an XML RPC server in python and a simple Test Client for it in python. The Server runs on a linux box. I tested it by running the python client on the same linux machine and it works. I then tried to run the python client on a Mac and i get…
MAC
  • 521
  • 1
  • 9
  • 21