xml-rpc

C++ xml-rpc client with utf-8 support for windows

Is there any XML-RPC client for windows for C++ with UTF-8 support? I looked at XMLRPC++, but it doesn't support any encoding. ...

Setting post tags in wordpress via XMLRPC API when submitting a post?

Hi, I am trying to use WordPress API via XMLRPC to submit new posts. But i can't set the post tags (nor the categories). echo "Adding $term to blog via XMLRPC ..."; $client = new IXR_Client("http://$blog.wordpress.com/xmlrpc.php"); $content = array('title'=>$term, 'description'=>"All abou...

Android to .NET - XML-RPC or KSoap?

We are designing an internal system that will have a .NET PC base station and many Android mobiles, communicating over WiFi. Can't decide between SOAP or XML-RPC protocol. Primary concerns are maturity, compatibility, and the minimizing of coding/integration, in that order. Which is best? Ben ...

Perl WordPress::XMLRPC categories not being set.

UPDATE (FIGURED OUT): I figured this out on my own, this is not documented anywhere. The array reference passed needs to have each array item be a hash reference using either the a categoryName or categoryId key identifier. Meaning: 'categories' => [ {'categoryName' => 'CatName1'}, {'categoryName' => 'CatName2'}, ], The quest...

Connecting to Python XML RPC from the Mac

Hi, 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 the following error socket.error: (61, 'Connection Refused') I can ping and ssh i...

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 trying to post a comment using the code below and I keep getting an error with a localized des...

Easiest RPC client method in PHP

I've been asked to help a friend's company to bring up a web application. I have very limited time and I reluctantly accepted the request, at one condition. As most of the logic goes on in the back-end, I suggested that I would finish the complete back-end only, allowing a front-end developer to simply interface with my backend. I pl...

How to use metaWeblog.newPost (xmlrpc api) properly with PHP ?

Update: solved this problem see answer I want to make new posts on my blog remotely with XMLRPC api and i m trying to use metaWeblog.newPost function, because it provides much features. I successfully added new posts into wordpress but i failed to post it in a defined category(categories) i tried lots of various things but failed at en...

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 contents of the array? Any ideas? Thanks in advance for your input. ...

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? ...

XML RPC c# Call returns array of strings and int

I'm doing an XML RPC call in ASP.net with c# and the call returns an Array called userinfo with strings and integers in it and I can't seem to figure out how to parse the data and put it into string and int objects... The only thing that compiles is if I make it an Object in the struct. The int returns fines and is referenced easily. An...

VB.NET function that takes other functions as a parameter, and executes them

Hello, Is there a way in vb.net to create a sub/function that will take as an argument some kind of pointer to another function, and allow this new sub/function to execute the passed function? What I have are 10-12 xml-rpc functions I am calling against a remote server. Each of these functions has different argument lists (one takes 1...

How can I discover the contract of a non-SOAP web API?

Let's say I have the URI for a RESTful or other contract-less API. Is it possible to determine its interface programatically? I'm using C#/ASP.net MVC, not sure if that's important. I understand that there won't be a published contract, but I'm wondering if there's something I'm not thinking of (there usually is). ...

Is it possible to extend Wordpress XMLRPC interface from a plugin?

Hello. Is it possible to create a plugin that, when active, would add a new "function" to the XMLRPC interface and handle its calling? ...

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

Hello, 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', 'username', 'password') The problem is that it always results in the following EOFE...

Viewing underlying XML response when using xml-rpc.net

Is there a way to view the actual underlying xml data that the cookcomputing.xmlrpc.net library returns? From what I can tell, it is only exposed via the xmlrpcstruct that the object creates based on the xml. However, I am getting XmlRpcInvalidXmlRpcException exceptions, and am trying to understand the problem. I am using an https c...

Exception handling with simplexmlrpcserver - python.

Hello, Is there any way to handle connection errors with simplexmlrpcserver module? I want to catch any errors within my xmlrpc server to handle them in my own way instead of printing the traceback to stdout. ...

Ruby on Rails and Infusionsoft Integration

I'm working on a rails app to integrate with infusionsoft's xmlrpc api. Does anyone have any tips or pointers for integrating a system smoothly? What are best practices? How do you best re-factor code? Thanks for any tips / ideas ...

too many threads due to synch communication

I'm using threads and xmlrpclib in python at the same time. Periodically, I create a bunch of thread to complete a service on a remote server via xmlrpclib. The problem is that, there are times that the remote server doesn't answer. This causes the thread to wait forever for a response which it never gets. Over time, number of threads in...

C++ Library for XML-RPC

Hello, There is a list of C++ XMLRPC implementations in Wikipedia: Libiqxmlrpc Ultra lightweight XML-RPC library for C++ XML-RPC for C and C++ XmlRpc++ XmlRpc C++ client for Windows gSOAP toolkit for C and C++ supporting XML-RPC and more libmaia: XML-RPC for Qt/C++ I wonder that people use which of these libraries most. Do you have e...