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

Errors while converting Python script to Ruby

I am using a Python script which uses xmlrpclib: import xmlrpclib srv = xmlrpclib.ServerProxy("http://demo.myslice.info:7080/", allow_none=True) # authentication token auth = {"AuthMethod": "password", "Username": "guest", "AuthString":…
Yasin
  • 287
  • 5
  • 15
4
votes
2 answers

how to get rid of ruby's warning: already initialized constant

I'm trying to redefine a gem's constant dynamically so I don't need to modify the gem itself. require 'xmlrpc/client' XMLRPC::Config.const_set("ENABLE_NIL_PARSER", true) warning: already initialized constant ENABLE_NIL_PARSER Is it possible to…
cfpete
  • 4,143
  • 8
  • 27
  • 23
4
votes
3 answers

how to enable magento xml-rpc?

I am applying for an account at godatafeed.com, and they say that my site does not have xml-rpc enabled. I checked all settings but I cant find anything regarding this. I checked some websites and they say to try to browse to this…
Luis Valencia
  • 32,619
  • 93
  • 286
  • 506
4
votes
3 answers

What's the standard for XML-RPC fault codes?

In the process of writing a pingback handler for my website, I noticed that the XML-RPC specification doesn't say anything about what fault codes should be defined and what they should mean. So the question is, is there a commonly accepted standard…
David Z
  • 128,184
  • 27
  • 255
  • 279
4
votes
1 answer

What is there difference between SOAP, XML-RPC, JSON ?

I'm sorry to ask this question but I have spent hours trying to understand where each one of them fits in in a web service. I just can't wrap my head around what do I need to use to create a web service. I know that web service can be .Net or Java…
wackytacky99
  • 614
  • 1
  • 14
  • 33
4
votes
4 answers

XML-RPC: best way to handle 64-bit values?

So the official XML-RPC standard doesn't support 64-bit values. But in these modern times, 64-bit values are increasingly common. How do you handle these? What XML-RPC extensions are the most common? What language bindings are there? I'm…
Mark Harrison
  • 297,451
  • 125
  • 333
  • 465
3
votes
2 answers

Wordpress Post Via XMLRPC - Add Multiple Categories

I'm trying to add multiple categories to a Wordpress (3.3.1) post via XMLRPC. This is my code (it works fine, please read below):
Pedro Lobito
  • 94,083
  • 31
  • 258
  • 268
3
votes
1 answer

How to send XML-RPC request from XML-RPC callback in twisted

I need complex logic in my application, eg: My application is XML-RPC server When it received XML-RPC request it needs to do some calculations. Then it need to call another one XML-RPC server, and parse it's response. Next it need to do some more…
Sharkman
  • 133
  • 12
3
votes
2 answers

using c# to create node in drupal

i need to make a ("webservice") c# app that can create/update/delete nodes for/from drupal 7 using xmlrpc. everytime i run my app i get errors from the xmlrpc files(library). I tried to find code/documentation for C# using xmlrpc to connect to…
Sergiu
  • 53
  • 5
3
votes
2 answers

Communication between Java programs with non-JDK objects

I'm looking for a communication channel between two java programs running on the same machine. I've found a few options (RMI and XML-RCP) but none of the examples that I found show exchange of objects wich class it's non-primitive and not know on…
rnunes
  • 2,785
  • 7
  • 28
  • 56
3
votes
1 answer

faultCode 105 faultString XML error: Invalid document end at line 1, column 1

I have facing problem to access xmlrpc. Whenever I tried to access xmlrpc through this http://localhost/joomla/xmlrpc link I got following error: faultCode 105 faultString XML error: Invalid document end at line 1, column 1
suvankar
  • 1,548
  • 1
  • 20
  • 28
3
votes
4 answers

What web APIs would you most want to replicate or are the most popular?

Soap, REST, xmlrpc. Facebook, twitter, [insert web 2.0 site]. What is the definitive web API and which would be the one that you would most likely replicate in your own code and for what reason? It seems that some web APIs invoke nausea in…
Greg Roberts
  • 2,562
  • 1
  • 20
  • 23
3
votes
2 answers

library for server side (c/c++) xmlrpc

I want to implement support of the XMLRPC protocol for my server that is written in C and C++ and now looking for the most widely adopted xmlrpc library. License is not an issue, GPL would be fine. What would you suggest ? Is there any defacto…
Konstantin
  • 6,061
  • 8
  • 40
  • 48
3
votes
0 answers

How to use xml-rpc in .NET Core 6?

We need to talk with an API using the xml-rpc protocol. We have to use .NET Core 6. How can we do this? It seems all available packages are deprecated?
DenCowboy
  • 13,884
  • 38
  • 114
  • 210
3
votes
1 answer

Getting an exception in wordpress post

I have a code to post data on word press i.e.- String username = "xyz"; String password = "xyz"; String xmlRpcUrl = "http://www.arrestcentral.com/xmlrpc.php?"; Wordpress wp = new Wordpress(username, password, xmlRpcUrl); Page…
Khoyendra Pande
  • 1,627
  • 5
  • 25
  • 42