0
votes
1answer
11 views
XML-RPC object mapping
Recently I was working on web services proxy. I got 2 web services proxy. UI will call Proxy A to let say create a record. then what Proxy A will do is to call Proxy B to do the actual task which …
0
votes
1answer
14 views
Consuming XML-RPC Web Services
In PHP, what is the most straightforward way to consume XML-RPC Web Services like the one provided by uClassify? SOAP and REST are incredibly easy, but XML-RPC seems like a pain in the ass.
1
vote
5answers
121 views
Can anyone explain the difference between XMLRPC, SOAP and also the C# Web Service?
Are they just the same protocol or something different?
I am just confused about it.
Actually, I want to call a web service written in C# with ASP.NET by Python. I have tried XMLRPC but it seems just …
0
votes
1answer
18 views
J2me web service connection problem
hi,
i'm trying to connect to a php web service using kxml-rpc api and the code is as simple as this:
XmlRpcClient xmlrpc = new XmlRpcClient("http://***ip here***:88/secure/service");
Vector …
0
votes
1answer
38 views
NSXMLParser ignores element named <id>
Hi there,
I'm using Wordpress's XML-RPC framework in my project. Now I have a situation where in the XML response there is a tag named which contains user data and by the time the response has been …
0
votes
1answer
25 views
XML-RPC Standard and XML Data Type
I was looking at XML-RPC for a project. And correct me if I'm wrong, but it seems like XML-RPC has no XML datatype. Are you supposed to pass as a string? or something else?
Am I missing something? …
0
votes
1answer
18 views
The name/identity of the invoker of a web service
I have a SOAP web service which I call from two clients using axis2. Can the web service know from which of these two clients the call originated from? If so, how do I know that during runtime? Is …
0
votes
3answers
73 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 I already know from …
2
votes
1answer
109 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 client I get the …
1
vote
2answers
65 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 for public services: …
0
votes
1answer
16 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 have any equivalent to …
0
votes
2answers
42 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 request handler, …
0
votes
1answer
104 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
server = …
0
votes
0answers
11 views
Direct access to result document using Apache XML-RPC
I have Apache XML-RPC up and running fine, but I want to see the full XML response document, not just the return value. According to http://ws.apache.org/xmlrpc/client.html in the Transport Factory …
0
votes
2answers
38 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 understand what …
