Questions tagged [xml-rpc]

XML-RPC is a remote procedure call (RPC) protocol which uses XML to encode its calls and HTTP as a transport mechanism.

XML-RPC is a means of encoding RPC requests in XML and sending them over HTTP. The use of XML as the intermediate language allows nesting of parameters into maps and lists, thus larger structures can be transported. Therefore XML-RPC can be used to transport objects or structures both as input and as output parameters.

In comparison to REST, where resource representations (documents) are transferred, XML-RPC is designed to call methods. You can find the homepage here.

1709 questions
0
votes
3 answers

How to debug Apache XML-RPC client with Python server

I am writing xmlrpc codes to communicate between Apache XML-RPC client and a Python SimpleXMLRPCServer. I have difficulty debugging it, because I can't find a way to see the request XML/response XML. Are there anyway I can see it dump to console or…
Lily
  • 5,872
  • 19
  • 56
  • 75
0
votes
1 answer

How do I Integrate OpenERP 7.0 with external file hosting service?

I am trying to integrate OpenERP 7.0 with an existing file hosting system in my institution. For that, I would present an upload form to users, and then send this file to the host via webservice, and would get back the id of the file on the remote…
0
votes
2 answers

Joomla and XMLRPC: 'Incorrect parameters passed to method...'

I've been trying to write a simple echo service for Joomla 1.5, but with no success. My code is this: echo.php:
0
votes
1 answer

Explicit Cast of XmlRpcValue to double

I am trying to cast a XmlRpc::XmlRpcValue to a double value. The implicit casting method did not work so I will have to explicitly cast it. However, I cannot get any of the 3 explicit casting types to work. The XmlRpcValue is a vector of vector of…
Sterling
  • 3,835
  • 14
  • 48
  • 73
0
votes
0 answers

How to send and receive custom data type in XML-RPC [Java]

I am trying to learn basics of XML-RPC protocol and implementing sample services using Apache xml-rpc library by following documentation at http://ws.apache.org/xmlrpc/types.html. So far I have successfully set up a Calculator service which receives…
RandomQuestion
  • 6,778
  • 17
  • 61
  • 97
0
votes
1 answer

how to pass many2one object in xmlrpc for openerp

I have django as front-end app, where I am saving "res.partner" id relating to django user. Based on that id I am fetching "res.partner" object from openerp. Now I want pass that "res.partner" object to openerp field having many2one relation, using…
Vimal Rughani
  • 234
  • 4
  • 14
0
votes
1 answer

jQuery XML-RPC - WRITE data to server

am working in android and iOS mobile app development using HTML5. Am new in XML-RPC. Am using jQuery XML-RPC for the XML parsing. Currently I read the values from Server to my Mobile App. Here its XML :
ULLAS MOHAN.V
  • 1,521
  • 1
  • 19
  • 36
0
votes
1 answer

Get binary data (Image file) in Java from Python with xml-rpc protocol

I have two applications (one in Python and another in Java). They are connected via XML-RPC protocol. I have image files saved in database as binary data and i need to get them in Java. So i make a query to get the data in python and i return a…
Light1988
  • 77
  • 12
0
votes
1 answer

XML-RPC exception switching from execute to executeAsync

I have the following XML-RPC implementation working which I copied and slightly modified from the apache website. public class DemoServer { public static void main (String [] args) { try { WebServer webServer = new WebServer(8080); …
nmore
  • 2,474
  • 1
  • 14
  • 21
0
votes
2 answers

RemoteObject - Cross Domain Issue

I am trying to get data from my server, used RemoteObject to accomplish it. When I run the application on my localhost it works great but when iam using it on my server i get a Channel.Security.Error(Security Error accessing URL). On the server side…
user20955
  • 2,552
  • 4
  • 24
  • 23
0
votes
0 answers

how to send xml-rpc to a codeigniter site?

I have a codeigniter XML-RPC server and client setup. Everything works fine. My problem is following: Another application will be sending XML-RPC to my codeigniter XML-RPC server, and I need to give them instructions. I know how to send from CI ->…
vick
  • 476
  • 6
  • 18
0
votes
1 answer

How to send xml to XML-RPC web service

.NET MVC 4.5 in C# xml-rpc.net library from Charles Cook Trying to hit a 3rd party vendor with xml-rpc. I need to send them some xml formatted like the following:
Scott Decker
  • 4,229
  • 7
  • 24
  • 39
0
votes
3 answers

twisted xmlrpc and numpy float 64 exception

I'm using numpy to to some staff and then serve the results via a twisted/XMLRPC server. If the result is a numpy float 64, I get an exception cause probably twisted can't handle this type. Infact is I downgrade the result to float32 with…
gerod
  • 51
  • 1
  • 4
0
votes
1 answer

xmlrpc and System.Net.WebException .net 3.5 c#

I use CookComputing.XmlRpc; Trying to connect to trac using some requests but I get this: System.Net.WebExceptionStatus.ReceiveFailure {"The underlying connection was closed: An unexpected error occurred on a receive."} {"Unable to read data …
Enriquev
  • 929
  • 2
  • 9
  • 27
0
votes
1 answer

Parse "struct" xml in Java

I am facing a parsing problem with xml generated in C. I need to parse Xml like below to Java objects. Is there any elegant way how to deal with this?
stebetko
  • 735
  • 1
  • 8
  • 24
1 2 3
99
100