active questions tagged xml-rpc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T23:34:30Zhttp://stackoverflow.com/feeds/tag/xml-rpchttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1143772/what-is-the-best-javascript-xml-rpc-client-library3What is the best Javascript XML-RPC client library?Frank Bannister2009-07-17T14:53:55Z2009-12-04T20:13:29Z
<p>What is the best Javascript XML-RPC client library in your opinion and why?</p>
<p>I'am making a JQuery app and I need to communicate with my xmlrpc server with it.</p>
<p>Found following libraries, but I have no idea what are their pros and cons:</p>
<p><a href="http://www.zentus.com/js/xmlrpc.js.html" rel="nofollow">http://www.zentus.com/js/xmlrpc.js.html</a></p>
<p><a href="http://www.scottandrew.com/xml-rpc/" rel="nofollow">http://www.scottandrew.com/xml-rpc/</a></p>
<p><a href="http://phpxmlrpc.sourceforge.net/jsxmlrpc/" rel="nofollow">http://phpxmlrpc.sourceforge.net/jsxmlrpc/</a></p>
<p><a href="http://www.vcdn.org/Public/XMLRPC/" rel="nofollow">http://www.vcdn.org/Public/XMLRPC/</a></p>
<p><a href="http://mimic-xmlrpc.sourceforge.net/" rel="nofollow">http://mimic-xmlrpc.sourceforge.net/</a></p>
http://stackoverflow.com/questions/1847534/can-anyone-explain-the-difference-between-xmlrpc-soap-and-also-the-c-web-servic1Can anyone explain the difference between XMLRPC, SOAP and also the C# Web Service?Turtle2009-12-04T15:06:45Z2009-12-04T16:21:58Z
<p>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 did not work.</p>
<p>So what is the actually difference among them?
Thanks.</p>
http://stackoverflow.com/questions/101180/which-is-the-best-net-xml-rpc-library1Which is the best .Net XML-RPC library?Matt Howells2008-09-19T11:24:36Z2009-11-28T19:38:45Z
<p>I need to communicate with an XML-RPC server from a .NET 2.0 client. Can you recommend any libraries?</p>
<p>EDIT: Having tried XML-RPC.Net, I like the way it generates dynamic proxies, it is very neat. Unfortunately, as always, things are not so simple. I am accessing an XML-RPC service which uses the unorthodox technique of having object names in the names of the methods, like so:</p>
<pre><code>object1.object2.someMethod(string1)
</code></pre>
<p>This means I can't use the attributes to set the names of my methods, as they are not known until run-time. If you start trying to get closer to the raw calls, XML-RPC.Net starts to get pretty messy.</p>
<p>So, anyone know of a simple and straightforward XML-RPC library that'll just let me do (pseudocode):</p>
<pre><code>x = new xmlrpc(host, port)
x.makeCall("methodName", "arg1");
</code></pre>
<p>I had a look at a thing by Michael somebody on Codeproject, but there are no unit tests and the code looks pretty dire.</p>
<p>Unless someone has a better idea looks like I am going to have to start an open source project myself!</p>
http://stackoverflow.com/questions/1767190/j2me-web-service-connection-problem0J2me web service connection problemOrkun Balkancı2009-11-19T23:02:46Z2009-11-19T23:10:23Z
<p>hi,</p>
<p>i'm trying to connect to a php web service using kxml-rpc api and the code is as simple as this:</p>
<pre><code>XmlRpcClient xmlrpc = new XmlRpcClient("http://***ip here***:88/secure/service");
Vector parameters = new Vector();
parameters.addElement("value");
String result = (String) (xmlrpc.execute("functionName", parameters));
</code></pre>
<p>Mobile device asks for permission to connect to GPS. But somehow the result is always null.</p>
<p>What can be done? and what configuration i should check? </p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1745916/nsxmlparser-ignores-element-named-id0NSXMLParser ignores element named <id>Leonard2009-11-17T00:49:15Z2009-11-17T21:04:20Z
<p>Hi there,</p>
<p>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 parsed and returned as some array format, that tag and it's value are gone. I have traced this down to NSXMLParser's parse method. Anyone know what's going on, why does the parser eat the id element?</p>
<pre><code>response is: <?xml version="1.0" encoding="UTF-8"><methodResponse><params><param><value><array><data><value><struct><member><name>id</name><value>2009-10-01Demo</value></member><member><name>distance</name><value><double>3.0</double></value></member><member><name>fuel</name><value><double>5.199999809265137</double></value></member><member><name>cost</name><value><double>8.199999809265137</double></value></member><member><name>begin</name><value><dateTime.iso8601>20091011T12:30:11</dateTime.iso8601></value></member></struct></value></data></array></value></param></params></methodResponse>2009-11-16 16:20:26.943 ProjectName[2102:207]`
</code></pre>
<p><code>decoded value: (
{
begin = 2009-10-11 12:30:11 -0700;
cost = 8.2;
distance = 3;
fuel = 5.2;
}
)</code></p>
<p>I realize that id is always a sensitive word but still...</p>
http://stackoverflow.com/questions/1745041/xml-rpc-standard-and-xml-data-type0XML-RPC Standard and XML Data TypeB. Tyndall2009-11-16T21:42:05Z2009-11-16T22:02:33Z
<p>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?</p>
<p>Am I missing something? Looks like this was though of with SOAP.</p>
http://stackoverflow.com/questions/1705301/the-name-identity-of-the-invoker-of-a-web-service0The name/identity of the invoker of a web serviceSwamy g2009-11-10T02:34:10Z2009-11-11T22:40:26Z
<p>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 there any API provided to lookup the name of the invoker of a particular web service by that web service. Thanks.</p>
http://stackoverflow.com/questions/736413/ping-feedburner-in-django-app3Ping FeedBurner in Django AppApreche2009-04-10T01:00:55Z2009-11-02T16:30:04Z
<p>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 website says to use the XML-RPC ping mechanism, but I can't find a lot of documentation on how to implement it.</p>
<p>What's the easiest way to do the XML-RPC ping in django/Python?</p>
http://stackoverflow.com/questions/1333939/how-to-implement-an-xml-rpc-server-in-as3-flash-or-air-runtime1How to implement an XML-RPC server in AS3 (Flash or AIR runtime)?AlberT2009-08-26T11:05:52Z2009-10-29T12:14:52Z
<p>I'm looking for a good <strong>XML-RPC server implementation</strong> to be included as part of an existing <strong>Flash+AS3 application</strong> in order to be notified on events by a client.</p>
<p>The ideal implementation should be well written, <strong>documented</strong>, <strong>reliable</strong> and <strong>encapsulated</strong> in order to be easily and cleanly wrapped.</p>
<p><strong><em>EDIT:</em></strong><br />
I'm working on porting the app on <strong>Adobe AIR runtime</strong>, will this execution environment bypass the listening socket limitation? If yes, any doc about this issue?</p>
http://stackoverflow.com/questions/1339970/xml-rpc-error-while-running-client0XML-RPC error while running clientPrashant2009-08-27T09:42:34Z2009-10-29T07:00:04Z
<pre><code>Exception in thread "Thread-4" java.lang.InstantiationError: org.apache.xmlrpc.XmlRpcRequest
at org.apache.xmlrpc.XmlRpcRequestProcessor.decodeRequest(XmlRpcRequestProcessor.java:82)
at org.apache.xmlrpc.XmlRpcWorker.execute(XmlRpcWorker.java:143)
at org.apache.xmlrpc.XmlRpcServer.execute(XmlRpcServer.java:139)
at org.apache.xmlrpc.XmlRpcServer.execute(XmlRpcServer.java:125)
at org.apache.xmlrpc.WebServer$Connection.run(WebServer.java:761)
at org.apache.xmlrpc.WebServer$Runner.run(WebServer.java:642)
at java.lang.Thread.run(Unknown Source)
</code></pre>
<p>This is the error I am getting when I run my client code on localhost in XML-RPC. I have made server and client in JAVA. my server process seems to be running ok. It is waiting for client requests successfully. </p>
<p>Following is my code for client.</p>
<pre><code>package rpcpkg;
import java.net.URL;
import java.util.Vector;
import org.apache.xmlrpc.client.XmlRpcClient;
import org.apache.xmlrpc.client.XmlRpcClientConfigImpl;
public class SimpleXmlrpc {
public SimpleXmlrpc() {
}
public static void main(String[] args) {
XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
try{
config.setServerURL(new URL("http://localhost:8089/workspace3/JAVARPC/RPCSRC/rpcserverpkg/"));
XmlRpcClient client = new XmlRpcClient();
client.setConfig(config);
Vector params = new Vector();
params.addElement(new Integer(17));
params.addElement(new Integer(13));
Object result = client.execute("sample.sum", params);
int sum = ((Integer) result).intValue();
System.out.println("The sum is: "+ sum);
}
catch(Exception e)
{
System.out.println("Exception: " + e.getMessage());
}
}
}
</code></pre>
http://stackoverflow.com/questions/1571598/xml-rpc-server-with-better-error-reporting1XML-RPC server with better error reportingDenis Otkidach2009-10-15T10:50:52Z2009-10-22T16:55:55Z
<p>Standard libraries (<code>xmlrpclib</code>+<code>SimpleXMLRPCServer</code> in Python 2 and <code>xmlrpc.server</code> in Python 3) report all errors (including usage errors) as python exceptions which is not suitable for public services: exception strings are often not easy understandable without python knowledge and might expose some sensitive information. It's not hard to fix this, but I prefer to avoid reinventing the wheel. Is there a third party library with better error reporting? I'm interested in good fault messages for all usage errors and hiding internals when reporting internal errors (this is better done with logging).</p>
<p><code>xmlrpclib</code> already have the constants for such errors: <code>NOT_WELLFORMED_ERROR</code>, <code>UNSUPPORTED_ENCODING</code>, <code>INVALID_ENCODING_CHAR</code>, <code>INVALID_XMLRPC</code>, <code>METHOD_NOT_FOUND</code>, <code>INVALID_METHOD_PARAMS</code>, <code>INTERNAL_ERROR</code>.</p>
http://stackoverflow.com/questions/548508/parallel-processing-middleware2Parallel processing middlewareantti.huima2009-02-14T04:51:37Z2009-10-22T03:32:58Z
<p>For relatively coarse-grained parallel processing (data transfers can be done in 100 Mbit Ethernet network), which middleware that is available for Windows and Linux do you consider best? CORBA? MPI1? MPI2? XML-RPC/SOA/WSDL? Custom network protocols? Java RPC? Python RPC? Others?</p>
http://stackoverflow.com/questions/1265654/how-to-xmlrpcclient-authentication0How to XMLRPC::Client authenticationbwizzy2009-08-12T11:44:32Z2009-10-21T02:00:03Z
<p>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 method?</p>
<pre><code>client = XMLRPC::Client.new(@xmlrpc_url, "/xmlrpc.php", "443", nil, nil, @username, @password, true, 900)
</code></pre>
http://stackoverflow.com/questions/1586197/list-of-relevant-rpc-protocols0List of relevant RPC ProtocolsDaff2009-10-18T22:25:41Z2009-10-19T12:35:20Z
<p>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.</p>
<p>There are some I already know from experience like</p>
<ul>
<li>RMI</li>
<li>"RESTful style RPCs" </li>
<li>XML-RPC</li>
<li>SOAP</li>
<li>JSON-RPC</li>
<li>(CORBA ?)</li>
<li>GWT-RPC and other Vendor specific ones, commonly used</li>
</ul>
<p>But I'm still not sure if I am missing some important ones. I want to keep the evaluation as objective as possible so I just need some input on which I might have forgotten and maybe when and for what it is mainly used.</p>
http://stackoverflow.com/questions/1583017/xml-rpc-c-and-python-rpc-server2XML-RPC C# and Python RPC ServerHenrik P. Hessel2009-10-17T19:29:52Z2009-10-17T19:47:08Z
<p>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 exception that the method is not found. Any Ideas how fix that. </p>
<p>thanks!</p>
<p>Python:</p>
<pre><code>from SimpleXMLRPCServer import SimpleXMLRPCServer
from SimpleXMLRPCServer import SimpleXMLRPCRequestHandler
# Restrict to a particular path.
class RequestHandler(SimpleXMLRPCRequestHandler):
rpc_paths = ('/RPC2',)
# Create server
server = SimpleXMLRPCServer(("", 8000),
requestHandler=RequestHandler)
server.register_introspection_functions()
# Register pow() function; this will use the value of
# pow.__name__ as the name, which is just 'pow'.
server.register_function(pow)
# Register a function under a different name
def adder_function(x,y):
return x + y
server.register_function(adder_function, 'add')
def HelloWorld():
return "Hello Henrik"
server.register_function(HelloWorld,'HelloWorld')
# Register an instance; all the methods of the instance are
# published as XML-RPC methods (in this case, just 'div').
class MyFuncs:
def div(self, x, y):
return x // y
server.register_instance(MyFuncs())
# Run the server's main loop
server.serve_forever()
</code></pre>
<p>C#</p>
<pre><code>namespace XMLRPC_Test
{
[XmlRpcUrl("http://188.40.xxx.xxx:8000")]
public interface HelloWorld : IXmlRpcProxy
{
[XmlRpcMethod]
String HelloWorld();
}
[XmlRpcUrl("http://188.40.xxx.xxx:8000")]
public interface add : IXmlRpcProxy
{
[XmlRpcMethod]
int add(int x, int y);
}
[XmlRpcUrl("http://188.40.xxx.xxx:8000")]
public interface listMethods : IXmlRpcProxy
{
[XmlRpcMethod("system.listMethods")]
String listMethods();
}
class Program
{
static void Main(string[] args)
{
listMethods proxy = XmlRpcProxyGen.Create<listMethods>();
Console.WriteLine(proxy.listMethods());
Console.ReadLine();
}
}
}
</code></pre>
http://stackoverflow.com/questions/1304280/implementing-a-callback-in-xml-rpc-or-soap1Implementing a callback in XML-RPC or SOAPTsahi Levent-Levi2009-08-20T06:23:38Z2009-10-16T01:19:20Z
<p>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 that in SOAP or XML-RPC?</p>
http://stackoverflow.com/questions/1324360/need-a-code-sample-showing-how-to-post-to-wordpress-using-codeigniter0Need a code sample showing how to post to Wordpress using Codeigniter. delgaudm2009-08-24T19:48:17Z2009-10-14T06:00:05Z
<p>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?</p>
<p>So far, I have this, which always results in "Bad login/pass combination", although I am using the correct combination. </p>
<pre><code>function doPost(){
$this->load->library('xmlrpc');
$bloguser = "theUserid";
$blogpass = "thePassword";
$blogid = 0; //I've tried 0 and 1 here.
$post['title'] = "The title of a new post";
$post['description'] = "The body of the post.";
$this->xmlrpc->server("http://localhost/blog/xmlrpc.php", 80);
$this->xmlrpc->method('metaWeblog.newPost');
$this->xmlrpc->request = array($blogid, $bloguser, $blogpass, $post, TRUE);
if ( ! $this->xmlrpc->send_request())
{
echo $this->xmlrpc->display_error();
}
else
{
echo '<pre>';
print_r($this->xmlrpc->display_response());
echo '</pre>';
}
}
</code></pre>
http://stackoverflow.com/questions/1560006/documenting-an-xml-rpc-service0Documenting an XML-RPC serviceRSlaughter2009-10-13T12:49:03Z2009-10-13T12:55:18Z
<p>Hi,</p>
<p>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.</p>
<p>As far as I can see, XML-RPC doesn't have any equivalent to SOAP's WSDL to provide a description of the service, so presumably it's something I will have to document by hand?</p>
<p>So far I've come accross examples such as that found <a href="http://technorati.com/developers/ping/" rel="nofollow">here</a> and <a href="http://www.sixapart.com/developers/xmlrpc/movable%5Ftype%5Fapi/" rel="nofollow">here</a> where documentation basically consists of an example call with place holders for data.</p>
<p>Is there any better method than this that I'm missing?
Thanks.</p>
http://stackoverflow.com/questions/1540011/python-http-server-with-xml-rpc0Python HTTP server with XML-RPCp-static2009-10-08T19:45:52Z2009-10-09T11:59:43Z
<p>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, running on different ports. I'd like to run both services on a single port. </p>
<p>I think it should be possible to modify the CGIXMLRPCRequestHandler class to also serve custom HTTP requests on some paths, or alternately, to use multiple request handlers based on what path is requested. I'm not really sure what the cleanest way to do this would be, though.</p>
http://stackoverflow.com/questions/1506379/need-a-https-capable-python-xml-rpc-server0Need a HTTPS-capable Python XML-RPC serverscrible2009-10-01T20:47:00Z2009-10-01T20:57:06Z
<p>I already have a very simple threading XML-RPC server in Python:</p>
<pre><code>from SocketServer import ThreadingMixIn
class AsyncXMLRPCServer(ThreadingMixIn, SimpleXMLRPCServer):
pass
server = AsyncXMLRPCServer(('localhost', 9999))
server.register_instance(some_object())
server.serve_forever()
</code></pre>
<p>Now I want to make it accessible exclusively over https. What do I do?</p>
http://stackoverflow.com/questions/1427669/direct-access-to-result-document-using-apache-xml-rpc0Direct access to result document using Apache XML-RPCLostHisMind2009-09-15T14:50:41Z2009-09-15T14:50:41Z
<p>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 <a href="http://ws.apache.org/xmlrpc/client.html" rel="nofollow">http://ws.apache.org/xmlrpc/client.html</a> in the Transport Factory section, it says:</p>
<p>XmlRpcCommonsTransportFactory -- Another HTTP transport factory, which uses the Jakarta Commons HttpClient. The main advantage over the default factory is, that the Commons HttpClient <strong>allows direct access to the result document</strong>. This allows a much lower memory profile.</p>
<p>However, I can't find anything about how to directly access the result document. If anyone has done this before, please help me out.</p>
http://stackoverflow.com/questions/1373078/hello-world-for-a-joomla-web-service0"Hello World" for a Joomla web service?Kyle Kaitan2009-09-03T12:20:03Z2009-09-10T08:43:05Z
<p>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 stranger to web services in Joomla.</p>
<p>Is there a "hello, world" example that anyone's aware of, or could demonstrate in an answer? Sometimes I've also seen a calculator web service as the "hello, world" example, where you support various operations like <code>Add</code>, <code>Subtract</code>, et cetera.</p>
<p>I'm using the latest Joomla 1.5.</p>
http://stackoverflow.com/questions/794614/problem-making-xml-rpc-call0Problem making XML RPC callJohn Sheehan2009-04-27T18:13:21Z2009-09-08T15:32:07Z
<p>I'm trying isolate a problem I'm having making an XML RPC call:</p>
<pre><code>XDocument doc = new XDocument();
doc.Add(new XElement("methodCall",
new XElement("methodName", "send"),
new XElement("params",
new XElement("param", new XElement("value", new XElement("string", this.ApiKey))),
new XElement("param", new XElement("value", new XElement("string", this.FromAddress))),
new XElement("param", new XElement("value", new XElement("string", recipient))),
new XElement("param", new XElement("value", new XElement("string", contents)))
)
)
);
HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://urlremoved");
req.ContentType = "text/xml";
req.Method = "POST";
XmlTextWriter writer = new XmlTextWriter(req.GetRequestStream(), Encoding.UTF8);
doc.Save(writer);
HttpWebResponse response = (HttpWebResponse)req.GetResponse();
StreamReader reader = new StreamReader(response.GetResponseStream());
return reader.ReadToEnd();
</code></pre>
<p>This just stalls and never times out (even if I set timeouts on req.TimeOut and req.ReadWriteTimeout). I removed the url, mostly to keep the focus on just the code.</p>
<p>Is there anything wrong with the code that would prevent this call from being made?</p>
http://stackoverflow.com/questions/1383383/understanding-xml-rpc-param-possibilities-especially-recursion-of-values0Understanding XML-RPC param possibilities, especially recursion of valueshal100012009-09-05T14:03:30Z2009-09-05T20:17:47Z
<p>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 should actually be possible within XML-RPC without these illustrations, and I wonder if someone could help me get a better handle on it.</p>
<p>The spec says:</p>
<blockquote>
<p><struct>s can be recursive, any
<value> may contain a <struct> or any
other type, including an <array>,
described below.</p>
<p><arrays>s can be recursive, any value
may contain an <array> or any other
type, including a <struct>, described
above.</p>
</blockquote>
<p>Does that mean it is perfectly legal to do the following:</p>
<pre><code><?xml version="1.0"?>
<methodCall>
<methodName>examples.getStateName</methodName>
<params>
<param>
<value>
<struct>
<member>
<name>lowerBound</name>
<value>
<struct>
<member>
<name>lowerBound</name>
<value><i4>18</i4></value>
</member>
<member>
<name>upperBound</name>
<value><i4>139</i4></value>
</member>
</struct>
</value>
</member>
<member>
<name>upperBound</name>
<value><i4>139</i4></value>
</member>
</struct>
</value>
</param>
</params>
</methodCall>
</code></pre>
<p>Is it possible to also do this:</p>
<pre><code><?xml version="1.0"?>
<methodCall>
<methodName>examples.getStateName</methodName>
<params>
<param>
<value>
<array>
<data>
<value><i4>12</i4></value>
<value>
<struct>
<member>
<name>lowerBound</name>
<value>
<struct>
<member>
<name>lowerBound</name>
<value><i4>18</i4></value>
</member>
<member>
<name>upperBound</name>
<value><i4>139</i4></value>
</member>
</struct>
</value>
</member>
<member>
<name>upperBound</name>
<value><i4>139</i4></value>
</member>
</struct>
</value>
<value><boolean>0</boolean></value>
<value><i4>-31</i4></value>
</data>
</array>
</value>
</param>
</params>
</methodCall>
</code></pre>
<p>I'm trying to write an implementation and I need to know all the possibilities, and what to check for when traversing through someone's schema on the server side. With the way the spec reads it appears that you can nest arrays and structs interchangeably, but I wanted to verify that is true. Thanks!</p>
http://stackoverflow.com/questions/1337314/error-in-xml-rpc-on-localhost0Error in XML-RPC on localhost.Prashant2009-08-26T20:34:01Z2009-08-26T21:22:26Z
<p>Hi,
I implemented XML-RPC client and server on localhost.The server is running ok.but when I run client following errors occurred:</p>
<p>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.java:190)
at org.apache.xmlrpc.XmlRpcClientResponseProcessor.(XmlRpcClientResponseProcessor.java:49)
at org.apache.xmlrpc.XmlRpcClientWorker.(XmlRpcClientWorker.java:44)
at org.apache.xmlrpc.XmlRpcClient.getWorker(XmlRpcClient.java:351)
at org.apache.xmlrpc.XmlRpcClient.execute(XmlRpcClient.java:191)
at org.apache.xmlrpc.XmlRpcClient.execute(XmlRpcClient.java:185)
at org.apache.xmlrpc.XmlRpcClient.execute(XmlRpcClient.java:178)
at rpcpkg.RPCClientDemo.main(RPCClientDemo.java:16)</p>
<p>I have kept server JAVA file on C:\wamp\www\workspace3\JAVARPC\RPCSRC\rpcpkg\RPCServerDemo.java</p>
<p>Below is my code for client :
package rpcpkg;</p>
<p>import java.util.*;
import org.apache.xmlrpc.XmlRpcClient;
public class RPCClientDemo {</p>
<pre><code> public static void main (String [] args) {
try {
XmlRpcClient server = new XmlRpcClient("http://localhost/workspace3/JAVARPC/RPCSRC/rpcpkg");
Vector params = new Vector();
params.addElement(new Integer(17));
params.addElement(new Integer(13));
Object result = server.execute("sample.sum", params);
int sum = ((Integer) result).intValue();
System.out.println("The sum is: "+ sum);
} catch (Exception exception) {
System.err.println("JavaClient: " + exception);
}
}
}
</code></pre>
http://stackoverflow.com/questions/1304748/php-communicating-with-java-server1PHP communicating with Java ServerPaul Hanssen2009-08-20T08:24:39Z2009-08-20T08:53:44Z
<p>G'day,</p>
<p>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.</p>
<p>I need to communicate domain objects up to the java server (from PHP) so their state can be managed over time. Changes to the domain objects need to be saved back to the data store via calls to PHP classes on a web server.</p>
<p>I was thinking of wrapping my PHP classes using a XML-RPC class (e.g. Zend_Xmlrpc_Server) as they will be stateless. If/when the java application needs to write to the data store (by calling the correct PHP class method) it's a matter of using a XML-RPC client library class.</p>
<p>However, I'm not sure how I expose functionality in the java application so it can be reached by PHP method calls. Can anyone tell me the easiest way to do this in java ... do I just write a multi-threaded application and expose a socket? I'm after the right library classes to use to structure the java application with.</p>
<p>Cheers,
Paul</p>
http://stackoverflow.com/questions/1289570/debugging-the-server-side-of-an-xml-rpc-call-using-zend-studio-and-or-xdebug0Debugging the server side of an XML RPC call using Zend Studio and/or xDebugEncoderer2009-08-17T18:23:56Z2009-08-17T19:27:13Z
<p>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. </p>
<p>I'd love to be able to step thru the XML RPC server code. Is there any way to do this? </p>
<p>Logically I didn't think it would work, but just for kicks I tried setting breakpoints in the Server code and then running the client under the debugger but, naturally, there was no way for me to step into the actual XML RPC call. </p>
http://stackoverflow.com/questions/989485/has-anyone-been-able-to-get-confluence-pm-to-add-attachments1Has anyone been able to get Confluence.pm to add attachments?stephenmm2009-06-12T23:21:51Z2009-08-17T16:02:34Z
<p>If so can you provide the code. I am able to do almost everything else from creating new pages, modifying page attributes etc.. But I cannot seem to add attachments. I have read the official <a href="http://confluence.atlassian.com/display/CONFEXT/Perl%2BXML-RPC%2Bclient" rel="nofollow">conflunce Perl XML-RPC site and discussions</a> but all the code fragments they show there don't seem to work for me. Here is my hacked up attempt at it:</p>
<pre><code># The following command sort of worked:
# ~/bin/wikitool.pl -action attach_file -url $MYURL
# IT attached something but the file was empty
sub attach_file {
my $confluence = XMLRPC::Lite->proxy($opts{server}."rpc/xmlrpc");
my $token = $confluence->call("confluence1.login", $opts{login}, $opts{password})->result();
# Fetch page
my $page = FetchPage($opts{title});
if (not $page) {
dbg("$opts{title} page is missing.","FATAL");
}
my $pageId = SOAP::Data->type( string => $$page{id} );
my $filename = "$ENV{HOME}/tmp/tmp0.gif";
my $metadata = {
fileName => $filename,
contentType => "image/gif",
comment => "Some random GIF",
};
if (not open FILE, "< $filename") {
dbg("Could not open file $filename: $!\n","FATAL");
}
binmode FILE;
my $data;
$data .= $_ while (<FILE>);
my $call = $confluence->addAttachment($pageId, $metadata, $data);
my $fault = $call->fault();
if (defined $fault) {
dbg("could not attach $filename" . $call->faultstring(), "FATAL");
}
else {
print "attached $filename\n";
}
}
</code></pre>
http://stackoverflow.com/questions/68144/using-xmlrpc-in-c-and-windows4Using XmlRpc in C++ and WindowsTim Cooper2008-09-16T00:12:14Z2009-08-17T09:50:22Z
<p>I need to use XmlRpc in C++ on a Windows platform. Despite the fact that my friends assure me that XmlRpc is a "widely available standard technology", there are not many libraries available for it. In fact I only found one library to do this on Windows, (plus another one that claims "you'll have to do a lot of work to get this to compile on Windows). The library I found was Chris Morley's "XmlRpc++". However, it doesn't have support for SSL.</p>
<p>My question therefore is: what library should I be using? </p>
http://stackoverflow.com/questions/1074917/xml-rpc-php-java1XML-RPC PHP JavaHypnus2009-07-02T15:02:23Z2009-08-14T09:54:04Z
<p>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 the problem because i can't print the response of the server (i don't know how), but it seems that the authentication works, because if i don't input the correct username and passoword i get an authentication error.
Please help!</p>
<p>Thanks in advance.
Cristian</p>