1
vote
5answers
120 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
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
16 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 …
2
votes
1answer
108 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 …
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 …
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
2answers
188 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 in "Bad login/pass …
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 …
4
votes
3answers
427 views
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 …
0
votes
1answer
103 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
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, …
1
vote
3answers
191 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 implementation should be well …
0
votes
1answer
175 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 services, I'm a complete …
1
vote
4answers
216 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 events pushed from my …
