xml-rpc

I want to ignore certificate verification, where and how to do it with XMLRPC web service??

I am accessing a web service and getting this error when trying to connect( web service is XMLRPC and I am using wordpress xmlrpc source code for request and handling repsonse): Error Domain=NSURLErrorDomain Code=-1202 "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “**.org” whic...

Get all posts' IDs from WordPress blog via xmlrpc request

I didn't find any xmlrpc method call to do it in WordPress codex. I can get all the posts via metaWeblog.getRecentPosts and extract IDs, but I didn't exactly know the count of the posts in blog. ...

Should I use an alternative from CPAN to replace Frontier::RPC2?

I have been using Frontier::RPC2 for my XML-RPC server, with Frontier::Client on the client side... but have noticed these modules have not been maintained recently. Discussion at the bottom of this page mentions some fresher alternatives on CPAN. What would the pros and cons of these be? I honesty don't have an immediate need to swit...

Drupal services node.save with Key auth

When posting a node from my slavesite.com site to my hostsite.com site, it keeps giving me the error : "1 1 Invalid API key.." I checked the key I set up on the host site and I gave the key a method access of "node.save". I built a simple module I got from this site(http://thejibe.com/blog/10/8/saving-node-remotely-using-services-and-ap...

How to get String array from returned XML-RPC object?

I am using Apache java XML-RPC latest version. The code for sending the array in Server is the following: LinkedList<String> messages = new LinkedList<String>(); public String[] getMessages() { System.out.println("Sent messages"); return messages.toArray(new String[messages.size()]); } To receive in the client I have tried s...

Does Zend provide an object wrapper for Zend_XmlRpc return values?

I have something like: $client = new Zend_XmlRpc_Client('<XML-RPC URL>'); $result = $client->call('<method name>', array( ... )); I get an XML string in $result. Is Zend capable of marshalling this XML into some object or associative array? If Zend doesn't marshall this automatically and I have to do so using plain PHP, how is it be...

Custom HTTP headers with XmlRpcClient

I was wondering if anyone knows how to send custom HTTP headers using an XmlRpcClient in Java? I see a custom header can be set using XmlRpcHttpTransport.setRequestHeader() but I don't see a way of tying this in with the XmlRpcClient itself. ...

Using XML-RPC in iPhone apps

Hello! Is it possible to use XML-RPC calls in iPhone application? For example, only streaming model of xml processing can be used. So we can't use NSXMLDocument in iPhone applications. Are there any similar constraints with XML-RPC? Thank you, Paul ...

SHA2 password storage with Java

I'm attempting to make a XML-RPC call that requires HmacSHA-256 hashing of a particular string. I'm currently using the Jasypt library with the following code: StandardPBEStringEncryptor sha256 = new StandardPBEStringEncryptor(); sha256.setPassword(key); sha256.setAlgorithm("PBEWithHmacSHA2"); On trying to use sha...

Programming a distributed application written in C#, Ruby and Java using XML-RPC

Hello everyone, I am tasked with writing a distributed event managing tool where each client, either a Ruby, C# or Java Client, synchronises all changes with a list of registered clients. I have to use XML-RPC to achieve the goal. My team and I have written up an XML-RPC client and server in each language and will provide the relevant s...

Zend XMLRPC Array Depth

Does anyone know if it is possible to change the max depth of an XMLRPC response array for a Zend_XmlRpc_Server? I am returning the following without a problem: $response = array('level1' => array('level2' => array('level3'))); but as soon as I do this it fails: $response = array('level1' => array('level2' => array('level3' => array(...

XML-RPC for an object broker

Hi, is there any good reason not to use XML-RPC for an object-broker server/client architecture? Maybe something like "no it's already outfashioned, there is X for that now". To give you more details: I want to build a framework which allows for standardized interaction and the exchange of results between many little tools (e. g. comma...

DTM automation using DSSO and XML-RPC.NET

Trying to automate WHQL testing using the ONE AND ONLY document available on the subject: http://www.microsoft.com/whdc/devtools/wdk/dtm/dtm_dsso.mspx I've played with the example code and am able to connect, list devices, etc. From there I've created a new project, a .NET 2.0 C# class: using System; using System.Reflection; using Syst...

XMLRPC Not working on Localhost

Hey guys, I've been working on a Wordpress theme for a while now and all works fine when it's on my server, but when I load it up on my machine locally I am unable to utilise certain functionality, namely the ability to post from outside the admin panel. To do this I use XMLRPC and the following code - $params = array(0,$username,$passw...

jmsexception FAILED TO INVOKE

I have developed a prototype of a message based scalable client-server architecture. Environment Setup Ubuntu 10.04 1 LTS java 1.6.0_22 JBoss AS 5.1.0 GA JBoss Messaging 1.4.3 GA Two queues (Q1 and Q2) 1 MDBs and 1 Message consumer for each queue, MDB pool size is set to 20. XMLRPC Client and server Eclipse Helios XMLRPC forms a int...