xml-rpc

Why do I get connection aborted messages?

I have a web form that is sending data to a third party service using this library from http://www.xml-rpc.net. Recently the form has started to throw exceptions. I have tried enabling trace in the web.config to see what data is going back and forth, but this seems to fix the problem, or at least stop the exception being thrown. Any id...

asynchronous XML-RPC requests and NSNotifications

Hello, I'm using the XMLRPC framework (by Eric Czarny) for iPhone to communicate with my server. I am using the XMLRPCConnection class (which is basically an extension of NSURLConnection) to create asynchrnous HTTP requests to fetch my data. The connectionDidFinishLoading method sends one and the same NSNotification each time data has b...

Using PHP to manage(add/edit/update) Trac via XML-RPC - Sample code/Tutorial?

I know there exists xml-rpc plugin for Trac (http://trac-hacks.org/wiki/XmlRpcPlugin), but I was wondering if anybody knows any example/tutorial for using xml-rpc PHP client to update Trac infos. Thanks ...

Python XMLRPC: Handling arbitrary exceptions on client-side

I'm trying to pass arbitrary exceptions from a XMLRPC server to a client (both Python scripts, exception types are defined on both sides). There's an exemplary client-side implementation at ActiveState Recipes which parses the returned "faultString", compares it with a list of known exceptions and, if found, raises that exception (instea...

Good backend for downloading nzb files to seperate directories

I'm laying out a download management that will segregate each users downloads, separate watched directories each download to their own folders, can't see each others queues, etc. I wanted to use Hellanzb with xml-rpc, however it does not seem to allow me to set separate download directories for each file. I want to avoid trying to gues...

Python: Best method to reload class in XMLRPC Server

I have a multit-threaded xmlrpc service running which stores a huge amount of data ~2G in memory. Currently, if I want to update a method the server exposes I have to restart the service. The problem here is that if I restart the service it needs to load all of the data it had in memory back into memory by using a database or using she...

Missing required extension: XMLRPC

I'm trying to install KnowledgeTree Community Edition on my CentOS VPS. One of the requirements for this was ZendServer - Which I had to install via their universal installer as installing via YUM was just straight out failing. I assume due to CPanel... Anyway, I got ZendServer installed and then downloaded the source of KnowledgeTree a...

Enable Web services in Redmine

Hi, Can any one guide me how to enable web services in redmine, specially XML RPC. And a proper way to implement such web service in redmine. Thanks. Parthiv ...

IP address of client in Python SimpleXMLRPCServer ?

I have a SimpleXMLRPCServer server (Python). How can I get the IP address of the client in the request handler? This information appears in the log. However, I am not sure how to access this information from within the request handler. ...

iphone NSURLConnection NSTimer works in initWithRequest but causes unrecognized selector error in sendSynchronousRequest

Hi, I need to use an NSTimer to cancel my NSURLRequest before 75 seconds (the time I measured regardless of the timeout I set). I'm using the XMLRPC classes by Eric Czarny. The XMLRPCConnection is basically an image of the NSURLConnection class. Here's the interface and the implementation file: #import <Foundation/Foundation.h> @clas...

How to call XML api

Hello, I have a set of XML API's ( XSD ) files. I want to call them from C++ and C# programs. These are two different applications. I want to get data by calling the api. I would also like to know something about XML RPC Can someone please let me know how do I call the XML api from C++ and C#. Thanks Sujay ...

Wordpress XML RPC - Latest posts within Category

I am using the JoeBlogs .Net wordpress wrapper by Alex James Brown. It just essentially makes all of the XML RPC calls available to .Net. I have been using the GetRecentPosts(5) call, e.g. "Grab the 5 most recent posts", but this returns everything from the entire blog. What if I want to simply grab the latest posts within Category X? ...

Haskell XMLRPC server executing dynamically generated functions

I have a Haskell RPCXML (HaXR) server process, run with GHC, that needs to execute any function that it's passed. These functions will all be defined at runtime so the compiled server won't know about them. Is there a way to load a function definition at runtime? A method that avoids disk IO is preferable. Thanks. ...

How to ping pingomatic.com with XML-RPC from a Rails app

I want to automate sending pings to rpc.pingomatic.com but I can't find anywhere which documents the fields to send in the RPC document. I'm not worried about a fancy RPC generator. I'm happy just to #{...} the link into a static string. I just need to know what to insert it into. ...

How to ping automatically to pingomatic in PHP ?

I want to ping automatically to pingomatic, when ever i update my blog, as it is done by the wordpress. Pingomatic uses the XMLRPC, but I don't know how it works. Can someone help me. ...

Access a subset of functions of a Python class

Using a class that has an xmlrpc proxy as one of it's object's properties def __init__(self): self.proxy = ServerProxy(...) # ... I'm trying to ease the use of some of the proxy's functions. Only a subset of the proxy functions are supposed to be used and I thus thought of creating a set of tiny wrapper functions for them like...

convention to represent the exit status and actual result in XMLRPC

in the C world, a function can return error code to represent the exit status, and use INOUT/OUT parameter to carry the actual fruit of the process. when it comes to xmlrpc, no INOUT/OUT parameter, is there any best practice/conventions to represent the exit status and actual result? the context is i am trying to write an agent/daemon ...

Future posting with dateCreated in Wordpress via XMLRPC in Ruby

I'm reaching the end of my tether trying to schedule a new post through Wordpress' XMLRPC interface from Ruby. I am creating a new Time object and filling it with my date and time, I then call .xmlschema to get a datetime string in the correct format for Wordpress' XMLRPC interface. Unfortunately, Wordpress treats this as a string, and...

Slow XML-RPC in Windows 7 with XML-RPC.NET

I'm considering to use XML-RPC.NET to communicate with a Linux XML-RPC server written in Python. I have tried a sample application (MathApp) from Cook Computing's XML-RPC.NET but it took 30 seconds for the app to add two numbers within the same LAN with server. I have also tried to run a simple client written in Python on Windows 7 to ...

Searching for embedded XML-RPC server (with SSL/TLS)

I'm searching for xmlrpc libraries that can be embedded in a C++ application. XmlRpc++ on SourceForge is a very neat solution but doesn't provide HTTPS support. Other RPC-like solutions such as gSOAP are not free for commercial use (or do I get that wrong, they mention a MPL-like license, too). What about Apache's Axis/C++, can it be e...