xml-rpc

Is there a java api to access bugzilla?

Is there a (standalone!) java api which wraps the XML-RPC interface to bugzilla? I don't want to program my own api for it, and I can't actually find a library which does this (and only this). Update: I'm looking for something like this http://oss.dbc.dk/bugzproxy/ only written in Java ...

How do I use enumerations with XML-RPC and C#?

I'm using the Cook Computing XMLRPC framework in C#. I'm calling a remote function that expects an int. I want to use an enumeration in the client code instead of just calling the function with the digits hard-coded in the function parameters. The code compiles successfully, but during testing an XmlRpcUnsupportedTypeException is throw....

Is there any good Python tutorial/guide to use XML-RPC with Last.fm API?

I'm new to XML-RPC and I would like to know if there is any good tutorial to use XML-RPC with the Last.fm API. Is it possible to call the API methods using the xmlrpclib module like in the following example? import xmlrpclib myserver = xmlrpclib.ServerProxy('http://ws.audioscrobbler.com/2.0/') ...

Shoes and Gems

I have shoes raisins (0.r1134) [i686-darwin8.9.1] +video I'm trying to set up a Shoes.setup block like this: Shoes.setup do gem 'mini_exiftool' gem 'xml-simple > 1.0' require "mini_exiftool" require 'xmlrpc/client' require 'xmlsimple.rb' require "my_webservice_api_wrapper" mwa = MyWebserviceApiWrapper.new mwa.login ...

XML-RPC versus HTML Form

Can anyone explain to me the benefits of using XML-RPC over a straight HTML Form ? On first glance, they seem to accomplish the same thing. The XML-RPC is "formatted" using XML, but you can do the same in a form (think textbox). I have an app that takes data from a script that runs on the client PC. The output from the script is XML. Cu...

Why are most web services in REST style, and not (also) in XML-RPC?

I know that Flickr provides both XML-RPC and REST ways of working with it. There are standard XML-RPC libraries for every language (For example, Python has a built-in one xmlrpclib). Standard XML-RPC libraries takes care of the serializing/deserializing as well as sending/receiving the responses. It seems to me that websites that use ...

Need sample XML-RPC client code for PHP5

Need a tutorial or some instruction on how to use the XML-RPC library built in to PHP (version PHP Version 5.2.6) for a XML-RPC client. The server is in Python and works. Google and php.net are failing me. Update: Per phpinfo I have xmlrpc-epi v. 0.51 installed. I visited http://xmlrpc-epi.sourceforge.net/ but the xmlrpc-epi-php exam...

Ping FeedBurner in Django App

I have a django site, and some of the feeds are published through FeedBurner. I would like to ping FeedBurner whenever I save an instance of a particular model. FeedBurner's website says to use the XML-RPC ping mechanism, but I can't find a lot of documentation on how to implement it. What's the easiest way to do the XML-RPC ping in dja...

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

Hello! 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 standard xmlrpc C library for such a purpose ? ...

Interaction between PHP front-end and .NET/Java backend though XML-RPC: performances consideration

I'm implemented a solution which is constituted by a .NET back-end application based on ASP.NET: since the team that I'm considering to build should be composed of me and one or two front-end developers working in PHP. A good side effect of this architecture is that PHP is a fast server-side scripting engine which require less resource...

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 developers while other invoke pure worship. If you were told to develop an API for a website/pro...

Magento Web Service Errors

I am implimenting a custom solution to interface with a Magento website. My code is in C#. I am trying to create products using either the v2_soap api and the xml-rpc api web services. I have attempted to create a product using both services. I cannot seem to successfully create a product. With each service I receive the error message “ ...

Can a XML-RPC request be made from an html form?

I'm playing with a new service's very simple API and I'm just curious if its possible to send an xml-rpc request directly from an html form. The api request example is this: <?xml version="1.0"?> <methodCall> <methodName>send</methodName> <params> <param><value><string>YOUR_API_KEY</string></value></param> <param><va...

Problem making XML RPC call

I'm trying isolate a problem I'm having making an XML RPC call: XDocument doc = new XDocument(); doc.Add(new XElement("methodCall", new XElement("methodName", "send"), new XElement("params", new XElement("param", new XElement("value", new XElement("string", this.ApiKey))), new XElement("param", new XElement("value", n...

How do deal with OpenX XMLRPC authentication / sessions

I am having trouble with Openx; here is the issue OpenX::Services::Base.connection returns the class variable @@connection which is populated by OpenX::Services::Base.connection if it has previously not been initialized. The problem with it being a class variable is that it persists across connections, which means if there is a lull i...

Dynamic function calls in Python using XMLRPC

I'm writing a class which I intend to use to create subroutines, constructor as following: def __init__(self,menuText,RPC_params,RPC_call): #Treat the params #Call the given RPC_call with the treated params The problem is that I want to call the function on the pattern "rpc.serve.(function name here)(params)", where rpc is a ser...

PHPXMLRPC Blog post to Drupal with metaWeblog.newPost: Wrong number of method parameters

I'm trying to post a simple text string to my drupal site. It needs to be done with metaWeblog.newPost because with blogger.newPost sets all the text as title. I've already tried that one. I've got this thus far: require_once('xmlrpc-v1.174.inc'); $appkey = "0001000"; $blogid = "blog"; $username = "xxxx"; $password = "xx...

openx 2.8.1 "Session ID is invalid" when using XMLRPC api + ruby openx gem

Occasionally when accessing OpenX 2.8.1 via its XMLRPC api (using the ruby 'openx' gem), I will get this error message: Session ID is invalid I cannot find anything in OpenX's forums about this, nor via some Google searching. I am starting to suspect that it is a bug or other issue in the ruby gem itself. Has anyone else encounte...

Has anyone been able to get Confluence.pm to add attachments?

If so can you provide the code. I am able to do almost everything else from creating new pages, modifying page attributes etc.. But I cannot seem to add attachments. I have read the official conflunce Perl XML-RPC site and discussions but all the code fragments they show there don't seem to work for me. Here is my hacked up attempt at i...

java: basic web service interface without a web server

hi everyone, how hard is adding a basic web services interface to an existing java server application without having to turn it into a .war, or embedding a small web server like jetty? say, xml-rpc instead of more modern approaches, if it helps. if not too hard, can you suggest a starting point? thank you in advance :) ...