active questions tagged xml-rpc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T23:34:30Z http://stackoverflow.com/feeds/tag/xml-rpc http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1143772/what-is-the-best-javascript-xml-rpc-client-library 3 What is the best Javascript XML-RPC client library? Frank Bannister 2009-07-17T14:53:55Z 2009-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-servic 1 Can anyone explain the difference between XMLRPC, SOAP and also the C# Web Service? Turtle 2009-12-04T15:06:45Z 2009-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-library 1 Which is the best .Net XML-RPC library? Matt Howells 2008-09-19T11:24:36Z 2009-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-problem 0 J2me web service connection problem Orkun Balkancı 2009-11-19T23:02:46Z 2009-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-id 0 NSXMLParser ignores element named <id> Leonard 2009-11-17T00:49:15Z 2009-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: &lt;?xml version="1.0" encoding="UTF-8"&gt;&lt;methodResponse&gt;&lt;params&gt;&lt;param&gt;&lt;value&gt;&lt;array&gt;&lt;data&gt;&lt;value&gt;&lt;struct&gt;&lt;member&gt;&lt;name&gt;id&lt;/name&gt;&lt;value&gt;2009-10-01Demo&lt;/value&gt;&lt;/member&gt;&lt;member&gt;&lt;name&gt;distance&lt;/name&gt;&lt;value&gt;&lt;double&gt;3.0&lt;/double&gt;&lt;/value&gt;&lt;/member&gt;&lt;member&gt;&lt;name&gt;fuel&lt;/name&gt;&lt;value&gt;&lt;double&gt;5.199999809265137&lt;/double&gt;&lt;/value&gt;&lt;/member&gt;&lt;member&gt;&lt;name&gt;cost&lt;/name&gt;&lt;value&gt;&lt;double&gt;8.199999809265137&lt;/double&gt;&lt;/value&gt;&lt;/member&gt;&lt;member&gt;&lt;name&gt;begin&lt;/name&gt;&lt;value&gt;&lt;dateTime.iso8601&gt;20091011T12:30:11&lt;/dateTime.iso8601&gt;&lt;/value&gt;&lt;/member&gt;&lt;/struct&gt;&lt;/value&gt;&lt;/data&gt;&lt;/array&gt;&lt;/value&gt;&lt;/param&gt;&lt;/params&gt;&lt;/methodResponse&gt;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-type 0 XML-RPC Standard and XML Data Type B. Tyndall 2009-11-16T21:42:05Z 2009-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-service 0 The name/identity of the invoker of a web service Swamy g 2009-11-10T02:34:10Z 2009-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-app 3 Ping FeedBurner in Django App Apreche 2009-04-10T01:00:55Z 2009-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-runtime 1 How to implement an XML-RPC server in AS3 (Flash or AIR runtime)? AlberT 2009-08-26T11:05:52Z 2009-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-client 0 XML-RPC error while running client Prashant 2009-08-27T09:42:34Z 2009-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-reporting 1 XML-RPC server with better error reporting Denis Otkidach 2009-10-15T10:50:52Z 2009-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-middleware 2 Parallel processing middleware antti.huima 2009-02-14T04:51:37Z 2009-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-authentication 0 How to XMLRPC::Client authentication bwizzy 2009-08-12T11:44:32Z 2009-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-protocols 0 List of relevant RPC Protocols Daff 2009-10-18T22:25:41Z 2009-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-server 2 XML-RPC C# and Python RPC Server Henrik P. Hessel 2009-10-17T19:29:52Z 2009-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&lt;listMethods&gt;(); Console.WriteLine(proxy.listMethods()); Console.ReadLine(); } } } </code></pre> http://stackoverflow.com/questions/1304280/implementing-a-callback-in-xml-rpc-or-soap 1 Implementing a callback in XML-RPC or SOAP Tsahi Levent-Levi 2009-08-20T06:23:38Z 2009-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-codeigniter 0 Need a code sample showing how to post to Wordpress using Codeigniter. delgaudm 2009-08-24T19:48:17Z 2009-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-&gt;load-&gt;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-&gt;xmlrpc-&gt;server("http://localhost/blog/xmlrpc.php", 80); $this-&gt;xmlrpc-&gt;method('metaWeblog.newPost'); $this-&gt;xmlrpc-&gt;request = array($blogid, $bloguser, $blogpass, $post, TRUE); if ( ! $this-&gt;xmlrpc-&gt;send_request()) { echo $this-&gt;xmlrpc-&gt;display_error(); } else { echo '&lt;pre&gt;'; print_r($this-&gt;xmlrpc-&gt;display_response()); echo '&lt;/pre&gt;'; } } </code></pre> http://stackoverflow.com/questions/1560006/documenting-an-xml-rpc-service 0 Documenting an XML-RPC service RSlaughter 2009-10-13T12:49:03Z 2009-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-rpc 0 Python HTTP server with XML-RPC p-static 2009-10-08T19:45:52Z 2009-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-server 0 Need a HTTPS-capable Python XML-RPC server scrible 2009-10-01T20:47:00Z 2009-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-rpc 0 Direct access to result document using Apache XML-RPC LostHisMind 2009-09-15T14:50:41Z 2009-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-service 0 "Hello World" for a Joomla web service? Kyle Kaitan 2009-09-03T12:20:03Z 2009-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-call 0 Problem making XML RPC call John Sheehan 2009-04-27T18:13:21Z 2009-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-values 0 Understanding XML-RPC param possibilities, especially recursion of values hal10001 2009-09-05T14:03:30Z 2009-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>&lt;struct&gt;s can be recursive, any &lt;value&gt; may contain a &lt;struct&gt; or any other type, including an &lt;array&gt;, described below.</p> <p>&lt;arrays&gt;s can be recursive, any value may contain an &lt;array&gt; or any other type, including a &lt;struct&gt;, described above.</p> </blockquote> <p>Does that mean it is perfectly legal to do the following:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;methodCall&gt; &lt;methodName&gt;examples.getStateName&lt;/methodName&gt; &lt;params&gt; &lt;param&gt; &lt;value&gt; &lt;struct&gt; &lt;member&gt; &lt;name&gt;lowerBound&lt;/name&gt; &lt;value&gt; &lt;struct&gt; &lt;member&gt; &lt;name&gt;lowerBound&lt;/name&gt; &lt;value&gt;&lt;i4&gt;18&lt;/i4&gt;&lt;/value&gt; &lt;/member&gt; &lt;member&gt; &lt;name&gt;upperBound&lt;/name&gt; &lt;value&gt;&lt;i4&gt;139&lt;/i4&gt;&lt;/value&gt; &lt;/member&gt; &lt;/struct&gt; &lt;/value&gt; &lt;/member&gt; &lt;member&gt; &lt;name&gt;upperBound&lt;/name&gt; &lt;value&gt;&lt;i4&gt;139&lt;/i4&gt;&lt;/value&gt; &lt;/member&gt; &lt;/struct&gt; &lt;/value&gt; &lt;/param&gt; &lt;/params&gt; &lt;/methodCall&gt; </code></pre> <p>Is it possible to also do this:</p> <pre><code>&lt;?xml version="1.0"?&gt; &lt;methodCall&gt; &lt;methodName&gt;examples.getStateName&lt;/methodName&gt; &lt;params&gt; &lt;param&gt; &lt;value&gt; &lt;array&gt; &lt;data&gt; &lt;value&gt;&lt;i4&gt;12&lt;/i4&gt;&lt;/value&gt; &lt;value&gt; &lt;struct&gt; &lt;member&gt; &lt;name&gt;lowerBound&lt;/name&gt; &lt;value&gt; &lt;struct&gt; &lt;member&gt; &lt;name&gt;lowerBound&lt;/name&gt; &lt;value&gt;&lt;i4&gt;18&lt;/i4&gt;&lt;/value&gt; &lt;/member&gt; &lt;member&gt; &lt;name&gt;upperBound&lt;/name&gt; &lt;value&gt;&lt;i4&gt;139&lt;/i4&gt;&lt;/value&gt; &lt;/member&gt; &lt;/struct&gt; &lt;/value&gt; &lt;/member&gt; &lt;member&gt; &lt;name&gt;upperBound&lt;/name&gt; &lt;value&gt;&lt;i4&gt;139&lt;/i4&gt;&lt;/value&gt; &lt;/member&gt; &lt;/struct&gt; &lt;/value&gt; &lt;value&gt;&lt;boolean&gt;0&lt;/boolean&gt;&lt;/value&gt; &lt;value&gt;&lt;i4&gt;-31&lt;/i4&gt;&lt;/value&gt; &lt;/data&gt; &lt;/array&gt; &lt;/value&gt; &lt;/param&gt; &lt;/params&gt; &lt;/methodCall&gt; </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-localhost 0 Error in XML-RPC on localhost. Prashant 2009-08-26T20:34:01Z 2009-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-server 1 PHP communicating with Java Server Paul Hanssen 2009-08-20T08:24:39Z 2009-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-xdebug 0 Debugging the server side of an XML RPC call using Zend Studio and/or xDebug Encoderer 2009-08-17T18:23:56Z 2009-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-attachments 1 Has anyone been able to get Confluence.pm to add attachments? stephenmm 2009-06-12T23:21:51Z 2009-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-&gt;proxy($opts{server}."rpc/xmlrpc"); my $token = $confluence-&gt;call("confluence1.login", $opts{login}, $opts{password})-&gt;result(); # Fetch page my $page = FetchPage($opts{title}); if (not $page) { dbg("$opts{title} page is missing.","FATAL"); } my $pageId = SOAP::Data-&gt;type( string =&gt; $$page{id} ); my $filename = "$ENV{HOME}/tmp/tmp0.gif"; my $metadata = { fileName =&gt; $filename, contentType =&gt; "image/gif", comment =&gt; "Some random GIF", }; if (not open FILE, "&lt; $filename") { dbg("Could not open file $filename: $!\n","FATAL"); } binmode FILE; my $data; $data .= $_ while (&lt;FILE&gt;); my $call = $confluence-&gt;addAttachment($pageId, $metadata, $data); my $fault = $call-&gt;fault(); if (defined $fault) { dbg("could not attach $filename" . $call-&gt;faultstring(), "FATAL"); } else { print "attached $filename\n"; } } </code></pre> http://stackoverflow.com/questions/68144/using-xmlrpc-in-c-and-windows 4 Using XmlRpc in C++ and Windows Tim Cooper 2008-09-16T00:12:14Z 2009-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-java 1 XML-RPC PHP Java Hypnus 2009-07-02T15:02:23Z 2009-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>