0
votes
3answers
48 views
List of relevant RPC Protocols
I need to evaluate and dig more into the use of Remote Procedure Call Protocols (over the network) and haven't found a comprehensive list of which I could include.
There are some …
2
votes
1answer
63 views
XML-RPC C# and Python RPC Server
On my server, I'm using the standard example for Python (with an extra Hello World Method) and on the Client side I'm using the XML-RPC.NET Library in C#.
But everytime I run my cl …
1
vote
2answers
41 views
XML-RPC server with better error reporting
Standard libraries (xmlrpclib+SimpleXMLRPCServer in Python 2 and xmlrpc.server in Python 3) report all errors (including usage errors) as python exceptions which is not suitable fo …
0
votes
2answers
32 views
Python HTTP server with XML-RPC
I have a server that has to respond to HTTP and XML-RPC requests. Right now I have an instance of SimpleXMLRPCServer, and an instance of BaseHTTPServer.HTTPServer with a custom req …
0
votes
1answer
74 views
Need a HTTPS-capable Python XML-RPC server
I already have a very simple threading XML-RPC server in Python:
from SocketServer import ThreadingMixIn
class AsyncXMLRPCServer(ThreadingMixIn, SimpleXMLRPCServer):
pass
ser …
1
vote
3answers
120 views
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 implement …
0
votes
1answer
57 views
XML-RPC error while running client
Exception in thread "Thread-4" java.lang.InstantiationError: org.apache.xmlrpc.XmlRpcRequest
at org.apache.xmlrpc.XmlRpcRequestProcessor.decodeRequest(XmlRpcRequestProcessor.ja …
0
votes
1answer
143 views
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 …
1
vote
4answers
131 views
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 event …
0
votes
1answer
100 views
“Hello World” for a Joomla web service?
I'd like to write a small web service in Joomla for a client, but I'm not sure how to get started. Although I'm moderately familiar with Joomla and quite comfortable with web servi …
0
votes
1answer
115 views
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? Ri …
0
votes
1answer
11 views
Documenting an XML-RPC service
Hi,
I'm writing an XML-RPC service that will be consumed by third parties and was wondering what the best way of documenting it would be.
As far as I can see, XML-RPC doesn't hav …
0
votes
2answers
31 views
Understanding XML-RPC param possibilities, especially recursion of values
One thing I've noticed with all the XML-RPC examples out there, including the spec itself, is there is no detailed example of a schema using recursive (param) values. It is hard to …
3
votes
3answers
212 views
Ping FeedBurner in Django App
I have a django site, and some of the feeds are published through FeedBurner. I would like to ping FeedBurner whenever I save an instance of a particular model. FeedBurner's websit …
0
votes
1answer
59 views
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?
