xml-rpc

Windows Live Writer: Additional information via XMLRPC or post metadata

Is there any way to specify additional information about a post/category/tag over XMLRPC? Or is there any way other way to provide/receive metadata about a post? ...

Is a Protocol based on an existing Protocol still a Protocol?

I am developing an open "protocol" for dynamic ridesharing services using mobile phones. It is based on XML-RPC and uses marshalled objects as parameters (quite like Soap). Every entity and operation will be heavily documented in the draft. As example, look at this first skeleton of a documented Prefs object to be used in the Protocol....

MS Access and SOAP, XMLRPC etc

I have been searching high and low on Google and finding very little information on using Web services with MS Access 2007. I'm sure this is possible somehow but I can't find any relevant information. Any ideas? ...

Need help with xmlrpc in php

I have downloaded phpxmlrpc from http://phpxmlrpc.sourceforge.net/ I have a folder on my webserver called xmlrpc-test and have a simple test php app created. <?php include 'xmlrpc.inc'; include 'xmlrpcs.inc'; function sumAndDifference ($params) { // Parse our parameters. $xval = $params->getParam(0); $x = $xval->scalarval...

Does XML-RPC in general allows to call few functions at once?

Can I ask for few question in one post to XML-RPC server? If yes, how can I do it in python and xmlrpclib? I'm using XML-RPC server on slow connection, so I would like to call few functions at once, because each call costs me 700ms. ...

Is there a Python ORM framework for interacting with data via XML-RPC?

I am working on a webapp that interacts with data via XML-RPC rather than with a direct connection to a database. I can execute SQL queries via an XML-RPC methods. I would like to interact with the data in an ORM framework fashion that has lazy/eager fetching, etc., although I can't seem to figure out how that would be possible with Py...

Which XML-RPC Library?

There are at least two implementations of XML-RPC for PHP. Which is best and why? I've been using the one based on Edd Dumbill's work in the O'Reilly jellyfish book, but I find it extraordinarily awkward and verbose and very hard to debug. The version built into PHP looks a bit cleaner, but contains warnings that the extension is exper...

About OpenX AdServer: How to make Direct Selection with XML-RPC?

Hi, I'm trying to retrieve a Banner from a remote OpenX adServer with XMLRPC. I had been working with the OA_XmlRpc Class . This class has a view function to retrieve a banner specifying bannerid, campaignid or zoneid. If I call the function in this way, it works: $oaXmlRpc = new OA_XmlRpc('adsxxxxxxxx.com.ve', '/xxxxxxx/www/delivery...

XML-RPC Python, Server Contact Client

Hi - I am trying to create a client-server application with XML-RPC in Python, in Ubuntu Linux. It is straightforward to have the client side request a particular service from the server side. What I am trying to do is have the client send a file to the server. The server will then process the file; this process may take a few hours. W...

Posting to wordpress from java using xmlrpc

I am posting to wordpress in java using xmlrpc successfully using the following code // Hard-coded blog_ID int blog_ID = 1; // XML-RPC method String xmlRpcMethod = "metaWeblog.newPost"; // Create our content struct ... // You can specify whether or not you want the blog published // immediately boolean publish = true; try { ...

xmlrpclib python - same script, different result

Hello, how can that happen that the same script produces different result on different machines (development & release)? Here is the script: import xmlrpclib print "ServerProxy" s = xmlrpclib.ServerProxy('http://jira.mycompany.com:80/rpc/xmlrpc') print "call get_tasks()..." ret_get_tasks = s.JiraVSB.get_tasks( "BDD", ["user"] ) print ...

What's this web service protocol? Unfamiliar XML Format

I'm following a document to send a request to a web service, but I'm confused about it's protocol. It's based on HTTP, but it's not in SOAP format nor XML-RPC. Is it in an standard protocol format or they just implement their custom protocol? Here is a sample request: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ns2:WebSt...

Zend Framework XML-RPC?

Hello, I would like to build an XML over HTTP provisioning interface using Zend Framework. Should Zend_XmlRpc_Server be used for this purpose? If so, can you recommend any guides on using it? (Specifically the part retrieving incoming XML and parsing it.) ...

wordpress java xml rpc library and/or client

Can anyone recommend an xml rpc library or client for wordpress using java? I've run into migration hell moving a joomla install to wordpress. Main reason for wanting to use rpc now is because i will be using it as my primary way of posting to the blog so i'm putting a simple client together and it needs to be configurable enough to all...

XMl-rpc in Iphone application development

Hi , how can i implement XML-RPC in Joomla with Iphone applications . actually i want to integrate iphone app with Joomla virtuemart . Please help ...

Android authenticating with Kerberos

Hi Everyone, I am trying to create a Android application that uses an existing web service. However, the existing web service uses Kerberos for authentication and I am having trouble getting Android using the android-xmlrpc library to authenticate with the service. If anyone has any experience with this, please respond. I am completely...

What public APIs are provided by Governments to the public?

I stumbled across NOAA's SOAP Service and it got me thinking. What other eGovernment services are provided to Business and the general public by Governments? I know the United States has a lot APIs, but what about other governments like the European Union. I am interested in not just SOAP but any Remote Procedure Call (RPC) service ...

How to get posts' content as HTML from a wordpress blog remotely

Hi, I have self-hosted word-press Blog, and I am making a static home-page for my website based on jQuery. So, I wanted to display some content from my blog , in my home page ( in widgets ) , as a news section For example , I may fetch latest 5 posts titles & contents OR a specific page content ( via passing page id ) OR a spec...

Is this structure valid in XML RPC?

Is it valid in XML-RPC to have an unbounded array of elements without having them inside of a array/data parent? From my limited experience with XML-RPC I have seen that arrays should be listed as such: <member> <name>Name</name> <value> <array> <data> <value> <string>Red</...

Sending dates with XML-RPC to OpenX

I'm trying to insert a campaign into openX with the XML-RPC API, everything except the start and end dates is working fine, my current code looks like this: $campaign = new XML_RPC_Value( array('advertiserId' => new XML_RPC_Value($advertiserID, 'int'), 'campaignName' => new XML_RPC_Value('...