xml-rpc

XML-RPC with PHP and GoDaddy? Confusion sets in.

Hey folks, I am attempting to work with XML-RPC via PHP on a GoDaddy server. This same server is hosting a Wordpress Blog that makes use of XML-RPC and is functioning, though that may be unrelated... Whenever I attempt to use any functions that are integrated into PHP for use with XML-RPC, I get an error (function list here: http://us...

XML-RPC PHP Java

Hi, I'm having a problem with the XML-RPC communication. I have a XML-RPC Client made in Java with Apache XmlRpc and a XML-RPC Server made in PHP with PEAR's XML_RPC. The problem is that i get a "HTTP server returned unexpected status: Not Found" error. I tested the server with a PEAR XML-RPC Client and it works. I don't know what is th...

How to communicate between Python and C# using XML-RPC?

Assume I have simple XML-RPC service that is implemented with Python: from SimpleXMLRPCServer import SimpleXMLRPCServer def getTest(): return 'test message' if __name__ == '__main__' : server = SimpleThreadedXMLRPCServer(('localhost', 8888)) server.register_fuction(getText) server.serve_forever(...

iphone > xml-rpc cookie authentication

Hey there I successfully integrated the xml-rpc framwork from the wordpress app into my project. It works just fine. Thanks for that. Know I need to set an http cookie when I'm connect to the service I'm working with. What would be the best way to do this in combination with the xml-rpc framework? I'm not that experienced with this techn...

How can I get the string result of a python method from the XML-RPC client in Java

I wrote: Object result = (Object)client.execute("method",params); in java client. Actually, the result should be printed in string format. But I can only output the address of "Object result", how can I get the content? And I have tried String result = (String)client.execute("method",params); It says lang.until.Object can not cast ...

What is the best Javascript XML-RPC client library?

What is the best Javascript XML-RPC client library in your opinion and why? I'am making a JQuery app and I need to communicate with my xmlrpc server with it. Found following libraries, but I have no idea what are their pros and cons: http://www.zentus.com/js/xmlrpc.js.html http://www.scottandrew.com/xml-rpc/ http://phpxmlrpc.sourcef...

What's the standard for XML-RPC fault codes?

In the process of writing a pingback handler for my website, I noticed that the XML-RPC specification doesn't say anything about what fault codes should be defined and what they should mean. So the question is, is there a commonly accepted standard for fault codes that specifies this information? Which fault codes are defined and what do...

when/where we use XMLRPC

I hared that many of the blog sites were using this protocol, i just want to know what is that when/where we use this XMLRPC Any Example with PHP would be appreciable :) I didnt see any kind of question like this in stack Overflow. Thanks in Advance !! ...

Web Service require Python List as argument. Need to invoke from C#.

Hi. I need to consume a webservice over XML-RPC. The webservice is written in Python, and one of the arguments is a Python list. I'm using XML-RPC.NET to invoke all the methods and it works fine, except for those that require a Python list argument. What would be the corresponding structure in C# which, if I pass as the argument, woul...

How to debug XML-RPC (Java)

I am just stepping into the world of XML-RPC to access a Trac server. How can I debug if I have access to the client only ? Some code snippet: import java.net.URL; import java.util.Hashtable; import org.apache.xmlrpc.client.XmlRpcClient; import org.apache.xmlrpc.client.XmlRpcClientConfigImpl; import org.lustin.trac.xmlprc.Wiki; ... ...

xmlrpc vs json / rest on java google appengine with android client

Can someone please point me to a reference which gives a "full circle" example implementation of either (both with android client and java appengine back end) xmlrpc or json / rest ? I have found a python example but am struggling to find a java version. Bonus points (not really) but if anyone could provide one where the the transport m...

How to do a wiredump of XMLRPC::Client in ruby?

I'm working on some code using XML RPC in ruby and need to see some debug info, how do you do that? ...

How to XMLRPC::Client authentication

I need to make an XMLRPC request that has to be authenticated, and have found limited documentation on the authentication side of XMLRPC. What's the best way to go about this? Right now I'm using the code below but still getting an authentication failure. Is there a different way to specify the client, then call a secondary auth metho...

Debugging the server side of an XML RPC call using Zend Studio and/or xDebug

I'm consuming an XML RPC service using PHP. The Server is also PHP and for development purposes it's running here on my local machine. I'd love to be able to step thru the XML RPC server code. Is there any way to do this? Logically I didn't think it would work, but just for kicks I tried setting breakpoints in the Server code and the...

Implementing a callback in XML-RPC or SOAP

I am trying to get an understanding of how I can use SOAP or XML-RPC to create a remote, open API for my product. Problem is, part of my API will require me to be able to get events pushed from my server to the client - I will need to be able to "send a callback" and not only "call a function" as part of my API. Is there a good way to do...

PHP communicating with Java Server

G'day, I have a project where I need to build a "live" java application (server) to hold state about domain objects (it's a private auction system). The java server will be communicating to and from PHP classes that hold the main back-end business functionality. The PHP classes will be stateless. I need to communicate domain objects up...

Need a code sample showing how to post to Wordpress using Codeigniter.

Does anyone have a code sample they can share that show how to make a basic blog post to Wordpress using the CodeIgniter xml-rpc library? So far, I have this, which always results in "Bad login/pass combination", although I am using the correct combination. function doPost(){ $this->load->library('xmlrpc'); $bloguser = "theUserid"...

What is the simplest library for consuming wordpress xmlrpc API

Hi guys, I want to consume wordpress XMLRPC API for my latest experiment. Do you know what is the simplest library to do this? PHP4 compatibility is not important as it's obsolete anyway. ...

How to implement an XML-RPC server in AS3 (Flash or AIR runtime)?

I'm looking for a good XML-RPC server implementation to be included as part of an existing Flash+AS3 application in order to be notified on events by a client. The ideal implementation should be well written, documented, reliable and encapsulated in order to be easily and cleanly wrapped. EDIT: I'm working on porting the app on Adobe A...

Error in XML-RPC on localhost.

Hi, I implemented XML-RPC client and server on localhost.The server is running ok.but when I run client following errors occurred: Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/codec/DecoderException at org.apache.xmlrpc.XmlRpc.createTypeFactory(XmlRpc.java:235) at org.apache.xmlrpc.XmlRpc.(XmlRpc...