xml-rpc

Access Ruby objects with Python via XML-RPC?

Hello I am trying to export a Ruby framework via XML-RPC. However I am having some problems when trying to call a method from a class not directly added as a handler to the XML-RPC server. Please see my example below: I have a test Ruby XML-RPC server as follows: require "xmlrpc/server" class ExampleBar def bar() return "hello ...

Messaging over HTTPS

I'm about to start a project that requires XML messages to be sent between a couple of servers over HTTPS. A brief summary is this: I have an application in use by clients that will send information to a central server. That server will communicate these XML messages to another company's server. I will also receive messages back from ...

We're using JDBC+XMLRPC+Tomcat+MySQL to execute potentially large MySQL queries. What is a better way?

I'm working on a Java based project that has a client program which needs to connect to a MySQL database on a remote server. This was implemented is as follows: Use JDBC to write the SQL queries to be executed which are then hosted as a servlet using Apache Tomcat and made accessible via XML-RPC. The client code uses XML-RPC to remotely...

Can you use a XML-RPC data source for Adobe Flex applications?

Can an XML-RPC call be made and the resulting XML response be utilized by Adobe's Flex? Would Flex be better served by a non-XML response and if so what format? ...

Help with XML-RPC server

Hello, I'm now trying to create a xml-rpc server with the CodeIgniter Framework. <?php $this->load->library('xmlrpc'); $this->load->library('xmlrpcs'); $config['functions']['weblogUpdates.ping'] = array('function' => 'weblogUpdates.ping'); $config['functions']['ping'] = array('function' => 'weblogUpdates.ping'); $config['functions']['...

Hooking Up an NSTableView to an XML-RPC Server

There are multiple ways to fill an NSTableView up with data through either bindings, delegates, or data sources. What is the best way to go about filling up the tableview with data that is changed pretty frequently from an XML-RPC server? I'm targeting Mac OS X 10.5 only and there are lots of examples on how to do it, but nothing very ...

In-depth Documentation of XML-RPC API

I was wondering if there is a single API documentation with "argument list" and the detailed description (and struct definition) of all the return values for all the blogging APIs like Blogger API,mt, metaweblog, and wp? ...

html browsers

What is the difference in displaying xml data using html browser such as firefox,internet exporer,netscape navigator etc. in terms of how text, images etc are display on a computer screen? ...

Set timeout for xmlrpclib.ServerProxy

I am using xmlrpclib.ServerProxy to make RPC calls to a remote server. If there is not a network connection to the server it takes the default 10 seconds to return a socket.gaierror to my program. This is annoying when doing development without a network connection, or if the remote server is down. Is there a way to update the timeout ...

What is the best way to document an XML-RPC API?

I am using XML-RPC as the interface to my project's Java web service, and I need to document it. It's really more than simple documentation. It is intended to be a document that will explain why XML-RPC is being used, how to use it with different languages (we use Java, PHP, Javascript, Perl, C++, and Python), what all the methods do, wh...

Simplest way to allow posting to a Rails site using MarsEdit/Ecto/etc?

I have a simple site, using restful_authentication and a simple model for the posts. I would like to use MarsEdit (or something like Ecto) to post/edit content. How would I go about this? The XML-RPC system is rather bewildering - there's a lot of different variations (Atom, MovableType, metaWeblog, Blogger, TypePad, probably others), n...

XML-RPC and Continuum from Python / Perl

Hi, Has anyone had any success with getting data via Xml-rpc using Python or Perl...? I'm using the continuum.py library: #!/usr/bin/env python from continuum import * c = Continuum( "http://localhost:8080/continuum/xmlrpc" ) or: #!/usr/bin/perl use Frontier::Client; my $url = "http://dev.server.com:8080/continuum/xmlrpc"; my ...

How do I get the client's IP address from within a Perl Frontier-RPC call?

I'm trying to get my Perl Frontier XML-RPC daemon to know about the IP address of the caller. I have to say I'm a newbie at Perl, so maybe this is obvious. I'm aware that Frontier::Daemon inherits from IO::Socket::INET, which has a peeraddr() method, but that doesn't help me when the daemon doesn't pass in its own instance to XML-RPC me...

in Drupal, how to make login state consistent between browser pages and embedded XMLRPC client?

I have a Drupal site with user logins. Embedded within this site is a Flash application that shows some data to everybody but allows extra functionality if the user is logged on. From within Flash, I'm using XMLRPC to access the system.check method (to determine whether the user is logged in) and the user.login method (to log in a user...

XML-RPC: best options for 64 bit ints?

XML-RPC unfortunately doesn't support 64-bit ints in the official standard. It seems there are several extensions that add this support. Do any of them seem to be more popular or better supported? Which extension do you use? Answers for all languages appreciated. ...

HOWTO: XML-RPC dynamic function registration in python?

I am new to XML-RPC. #client code import xmlrpclib proxy = xmlrpclib.ServerProxy("http://localhost:8000/") x,y = arg1,arg2 print proxy.fun1(x,y) print proxy.fun2(x,y) What server should do: load fun1 register fun1 return result unload fun1 and then do same with fun2. What is the best way to do this? I have figured out a way to d...

Web based wizard with Python

What is a good/simple way to create, say a five page wizard, in Python, where the web server component composes the wizard page content mostly dynamically by fetching the data via calls to a XML-RPC back-end. I have experienced a bit with the XML-RPC Python module, but I don't know which Python module would be providing the web server, h...

Parallel processing middleware

For relatively coarse-grained parallel processing (data transfers can be done in 100 Mbit Ethernet network), which middleware that is available for Windows and Linux do you consider best? CORBA? MPI1? MPI2? XML-RPC/SOA/WSDL? Custom network protocols? Java RPC? Python RPC? Others? ...

PHP: Fatal error: Allowed memory size of 134217728 bytes exhausted (CodeIgniter + XML-RPC)

Hello, I currently have a set-up that goes as such: I have a bunch of "client" point of sale systems that periodically send new sales data to one centralized "HQ", which stores the data into one big database for report generation. The client POS is based on PHPPOS, and I have implemented a module that uses the standard XML-RPC library ...

Can I have a cross-platform cross-technology solution?

Hi , We have an old application which has a FORTRAN API to be called from other applications. After some time they built a ( C ) wrapper for the FORTRAN API.Then I'm now building a c++ wrapper , with a little data handling , for the C API. So I'm thinking what is the best way of building an API that can be called from any programming ...