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
3
votes
1 answer

How to get paremeters required by Opennebula XML-RPC api

I am trying to create a VM using Opennebula XML-RPC API. That shouldn't be a problem, according to their documentation. However, parameters required for this method are nowhere to be seen (as well as for all other methods). So far, I have managed to…
3
votes
1 answer

redstone.xmlrpc.XmlRpcException: A network error occurred. => How to fix this?

I have a problem with a program, which allows to run xml code and as a result call some procedures from database. I don't know much about how it should work, because it's not mine, but perhaps you could provide me some advice what is wrong. When I…
3
votes
1 answer

Can I fetch subtasks of a JIRA issue via XMLRPC (and if so, how to do this)?

I have an xmlrpc interface running and am able to fetch issues by ID. For example, the issue as returned by getIssue('PROJECT-701') contains the fields: affectsVersions .. : [releaseDate,sequence,released,archived,...] assignee ......... :…
blabla999
  • 3,130
  • 22
  • 24
3
votes
1 answer

SimpleXMLRPCServer request dispatching issue

We're developing client-server XML-RPC based application. Server part should know IP address of each client on per request basis. To accomplish this we mix SocketServer.ThreadingMixIn into SimpleXMLRPCServer and subclass SimpleXMLRPCRequestHandler…
3
votes
2 answers

Add remotely WordPress Posts to my blog, but how to add picture?

I have this blog post on my blog: http://lifepearls.herobo.com/2011/06/tom-hardy-is-bane/ I make posts from my php code with this: function wpPostXMLRPC($title,$body,$rpcurl,$username,$password,$category,$keywords='',$encoding='UTF-8') { $title…
mirzahat
  • 1,025
  • 2
  • 10
  • 19
3
votes
1 answer

Foreach Loop & XML-RPC: It should work but it isn't, Why?

I wasn't able to find a question already answered on here that applied to my situation. From my understanding of what this code is doing, it should actually be working but I just don't understand why it isn't. I'm reading a list of SKUs from a text…
Tsanders
  • 71
  • 9
3
votes
3 answers

Can I have a cross-platform cross-technology solution?

We have an old application which has a FORTRAN API to be called from other applications. After some time they built a ( C ) wrapper for the FORTRAN API.Then I'm now building a c++ wrapper , with a little data handling , for the C API. So I'm…
Abdo
  • 31
  • 4
3
votes
4 answers

Android XML-RPC library?

What is the easiest way to use XML-RPC in android? I tried http://code.google.com/p/android-xmlrpc/ , but it dooesn't compile and looks abandoned.
Ivan Gromov
  • 4,195
  • 9
  • 41
  • 57
3
votes
1 answer

RPC lib in multilanguage

I search for RPC lib that support client or server in C++ and C#. So i can make client in C++ and talk to server written in C#. I do not know if Microsoft RPC allow this, Protocol Buffers or MsgPack.
userbb
  • 2,148
  • 5
  • 30
  • 53
3
votes
0 answers

Adding Tags to standard Wordpress Taxonomy

I'm attempting to the API (and xml-rpc) to write some new articles and post them to a wordpress instance. However I am having issues with the fact that: I can only add Tags for a new post that already exist. I cannot find a way to add a Tag to the…
disruptive
  • 5,687
  • 15
  • 71
  • 135
3
votes
2 answers

XMLRPC server over HTTPS in Python 3

I'm trying to implement a simple XML-RPC server on Python 3, and I want it to run over HTTPS using the standard ssl library (included in Python 2.6 and Python 3.x). I've seen some code that does it with OpenSSL or M2Crypto modules, but I want to…
Marc Garcia
  • 3,287
  • 2
  • 28
  • 37
3
votes
1 answer

how to provide a Lot/Serial number for the product through xmlrpc in odoo

I have in my code via xmlrpc a function to validate the picking but it asks me to place the batch number of the product. How can I validate that lot? pick_assign = models.execute_kw(db, uid, password, 'stock.picking',…
3
votes
1 answer

C# > XML-RPC.NET > Python MailMan

I am attempting to use a .NET web application to manage an external MailMan server running in Python. I have the connection up and running, and all the basic functionality working completely. The last issue remaining is to find .NET's equivalent…
kevd
  • 31
  • 2
3
votes
1 answer

How to bulk insert record in Odoo?

Currently, develop some code in c# for insert record into res.partner(Contacts) using Odoo API one by one using loop in c#. But i want to insert all record by single time Odoo API call, is it possible ? Please have a look my existing code foreach…
LGB
  • 75
  • 1
  • 11
3
votes
2 answers

Apache XML-RPC Exception Handling

What is the easiest way to extract the original exception from an exception returned via Apache's implementation of XML-RPC?
John with waffle
  • 4,113
  • 21
  • 32