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
2 answers

Perl WordPress::XMLRPC categories not being set

The following code works fine to upload a new post to a WordPress blog but for the life of me I can't seem to get the categories to be set. The categories exist. I've tried all lower case, tried case-matching, tried the slug version. Nothing works.…
Jay
  • 11
  • 2
0
votes
1 answer

Encrypt credentials for Wordpress XML-RPC API call

I'm planning to use Wordpress' XML-RPC API but this requires me to store plain text username/password. Is there a way to get a token from the Wordpress server so that I can store that instead of credentials to the db? Or securely encrypt the…
iDev247
  • 1,761
  • 3
  • 16
  • 36
0
votes
1 answer

Formatting a xmlrpcmsg array

I have the following array Array ( [value] => Array ( [mf_account] => xxxxx [mf_username] => xxxx [mf_password] => xxxx [as_user_id-int] => e [page-int] => d [page_size-int] => x [get_campaign] => Submit [form_build_id] =>…
develophper
  • 302
  • 1
  • 3
  • 18
0
votes
1 answer

WCF + Xml-Rpc don't work

I have a classic WCF webservice. Few weeks ago, in order to answer to a client demand, I added Rest management to my webservice. But, at the beginning of the week, another client said to me its system can only manage XML-RPC. So he needs to connect…
BaptX
  • 561
  • 1
  • 7
  • 21
0
votes
1 answer

Drupal xmlrpc user.login suddenly fails

I am accessing a Drupal Views feed through xmlrpc. The script has worked in the past and my goal today was solely to access another feed. In theory, there was nothing to do except to change the name of the feed. The endpoint had not changed, my…
jobucks
  • 69
  • 7
0
votes
2 answers

Setting post tags in wordpress via XMLRPC API when submitting a post?

I am trying to use WordPress API via XMLRPC to submit new posts. But i can't set the post tags (nor the categories). echo "Adding $term to blog via XMLRPC ..."; $client = new IXR_Client("http://$blog.wordpress.com/xmlrpc.php"); …
aviv
  • 2,719
  • 7
  • 35
  • 48
0
votes
2 answers

C++ xml-rpc client with utf-8 support for windows

Is there any XML-RPC client for windows for C++ with UTF-8 support? I looked at XMLRPC++, but it doesn't support any encoding.
Anton Kazennikov
  • 3,574
  • 5
  • 30
  • 38
0
votes
2 answers

Can ForkingMixIn reuse a process, like ThreadingMixIn reuses a thread?

EDIT: Probably this question is wrong. I was getting the thread id with threading.current_thread().ident and I got the same value for subsequent calls, which led me to think threads were being reused, but that does not seem to be the real thread id.…
Marcos Fernandez
  • 556
  • 9
  • 22
0
votes
2 answers

How to make an app for a Wordpress Blog?

I want to make an iPhone OS app for a Wordpress blog, and I'm unable to figure a way to grab the data from the blog. The XML-RPC doesn't seem to have an anonymous read-only mode The RSS feed has truncated posts So, if anyone managed to make it,…
fmauNeko
  • 3
  • 1
0
votes
2 answers

The MessageContext does not have an associated SOAPFault

i am call web service with axis2 plugin .The methodology used is rpc. the code main is : GetPayIDBillIDStub stub = new GetPayIDBillIDStub("http://80.91.4.113:8088/services/GetPayIDBillID_Proxy"); …
reza rostami
  • 93
  • 1
  • 3
  • 8
0
votes
2 answers

TRAC add a post script

I want to use the trac data (ticket information,status,etc) in a webpage, since the data retrieval is very very slow (The reason I explain this is because am afraid my problem may be XY Problem) and hence I exported all the data to a DB for faster…
Harry
  • 1,572
  • 2
  • 17
  • 31
0
votes
1 answer

OpenERP - XML RPC (write method - PHP)

I am struggling to format my call correctly, so that I am able to use the 'write' method, which updates a record. I have looked at the documentation here, and still cannot work it out. Is there any example where I can have a look at as I could not…
Ray Meyer
  • 143
  • 12
0
votes
1 answer

How to get wordpress posts by taxonomy terms. XML-RPC

How to get wordpress posts by taxonomy terms using XML-RPC? For example I want to get all posts tagged by 2014 tag. Thank you.
DoctorP
  • 159
  • 2
  • 10
0
votes
0 answers

Datatables Server-side processing with IXR_Library

I am using IXR_Library for making XML-RPC request to server. And the problem is I am getting a huge amount data from the server and if I want to display them in datatable it processes very very slow. That't why I decided to use " Server-side…
Umidjon Urunov
  • 651
  • 1
  • 17
  • 39
0
votes
1 answer

JoeBlogs Wordpress C# Add category and upload image

I am using JoeBlogs https://github.com/alexjamesbrown/JoeBlogs to handle stuff on some of my wordpress websites. I am having some problems with creating a new category and uploading a picture. Here is my code for creating a new category: var…
user1812076
  • 269
  • 5
  • 21