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

Error after installing mod_xmlrpc in ejabberd

I am working on a java project in which i have to communicate with the ejabberd (create/delete a jabber user etc.. ) xmpp server. From the different suggestions available in the internet I understood that xml rpc one method to achieve that. I tried…
Deepu
  • 311
  • 3
  • 4
0
votes
1 answer

Library for openERP connection with android device

I'm trying to connect with openERP with the library that openERP or odoo uses with their examples. But the Apache library of xmlrpc, I can't find it. Here is the documentation that openERP gives but they use the apache library :…
Theo Jansen
  • 81
  • 1
  • 4
  • 11
0
votes
0 answers

Magento API Manage Indexes

I use Magento 1.9 with API 1.0 XML-RPC to add and modify products. It works pretty well, but I need to re-index manually in Magento Backend after each modifiation to make changes visible on my shop. All the indexes are set to "Update on Save" - how…
sullivan
  • 360
  • 1
  • 4
  • 14
0
votes
1 answer

How to update the values of `route_ids` through Web API in the `product.template` in Odoo/OpenERP 8?

After connecting to the server using xmlrpc and following the instructions from here, I try to change the value of the route_ids (Procurement -> Supply Chain Information -> Routes) so none of the three options (Manufacture, Buy, Make To Order) is…
George
  • 774
  • 2
  • 9
  • 18
0
votes
0 answers

java return data to java client

i have java client send to server (jetty-xmlrpc) query and receive data from server inside hashmap. sometime data is more big(e.g. 3645888 rows), when this data send to java client i have error ( java heap space ). how can i send data by 2 times for…
King imbrator
  • 27
  • 1
  • 9
0
votes
2 answers

What is solution for this error "Unable to create a XML-RPC client"?

What configuration follow for "Integration of selenium with Testlink 1.9.9"? I want exact working step for configure "Selenium" with "Testlink" in Ubuntu12.04 LTS (Linux or Ubuntu). I am tried with steps which are given for "Windows OS". Working…
Sagar007
  • 848
  • 1
  • 13
  • 33
0
votes
1 answer

Zend_XmlRpc :Failed to parse response error

Am trying to get a simple hello world XMLRPC server setup to work.However I get this Failed to parse response error error when I run the test URL http://localhost/client/index/ on my browser In my Rpc Controller that handles all my XMLRPC…
davykiash
  • 1,796
  • 5
  • 27
  • 60
0
votes
1 answer

How publish new post with XML RPC

I use WordPressSharp lib link but in documentation i cannot find how i make publish new articles. By default new articles go in draft. var post = new Post { PostType = "post", Title = "My Awesome Post", Content = "

This is the…

0
votes
2 answers

too many threads due to synch communication

I'm using threads and xmlrpclib in python at the same time. Periodically, I create a bunch of thread to complete a service on a remote server via xmlrpclib. The problem is that, there are times that the remote server doesn't answer. This causes the…
0
votes
0 answers

How to add post thumbnail using joeblogs or xml-rpc?

How do I add thumbnail image content using joeblogs or xmlrpc? add content code: var post = new Post(); post.DateCreated = DateTime.Today.AddHours(0); post.Title = textBox1.Text; post.Body = richTextBox1.Text; post.Categories = new string[] {…
0
votes
1 answer

XML-RPC wp.getComments filter by author?

I would like to use Wordpress' XML-RPC to retrieve all comments associated with a particular author email, but there doesn't seem to be such a filter in the wp.getComments XML-RPC API? I wanted to check if there was a good way to do this before I…
synthcat
  • 302
  • 2
  • 15
0
votes
2 answers

How do I get the XML format of Bugzilla given a bug ID using python and XML-RPC?

This question has been updated I am writing a python script using the python-bugzilla 1.1.0 pypi. I am able to get all the bug IDs but I want to know if there is a way for me to access each bug's XML page? Here is the code I have so far: bz =…
Redson
  • 2,098
  • 4
  • 25
  • 50
0
votes
1 answer

Does anyone know Cisco TelePresence Server API 4.0(2.8)

Now, I have a Java program.I want to use it to start the telepresence server. Below is the code: public static XmlRpcClient getMCUClient() throws MalformedURLException{ Lock lock = new ReentrantLock(); lock.lock(); try { …
Fancye Bai
  • 17
  • 1
0
votes
2 answers

How to compile Moses with XMLRPC support?

I've installed libxmlrpc-core-c3-dev package (using aptitude) and irstlm in /opt/moses After that I run ./bjam -j4 --with-irstlm=/opt/moses/irstlm --with-xmlrpc-c=/usr/ --prefix=/opt/moses > install.txt Looks like everything is installed…
Enlightened
  • 239
  • 2
  • 13
0
votes
2 answers

Viewing underlying XML response when using xml-rpc.net

Is there a way to view the actual underlying xml data that the cookcomputing.xmlrpc.net library returns? From what I can tell, it is only exposed via the xmlrpcstruct that the object creates based on the xml. However, I am getting…
rob
  • 63
  • 1
  • 1
  • 4