Tagged Questions

xmlrpclib is the Python standard library module for transparently handling XML Remote Procedure Call. (Available since v2.2)

learn more… | top users | synonyms

7
votes
5answers
2k views

Using **kwargs with SimpleXMLRPCServer in python

I have a class that I wish to expose as a remote service using pythons SimpleXMLRPCServer. The server startup looks like this: server = ...
5
votes
1answer
419 views

Why would an XML-RPC API endpoint randomly throw a ProtocolError -1?

We have built an extensive middleware system around Magento's XML-RPC API. We've wrapped the endpoint with Python and are doing a lot of multicalls. At a seemingly random interval, the API responds ...
3
votes
1answer
556 views

Using gevent with python xmlrpclib

Is it possible to use python's standard libs xmlrpclib with gevent? Currently i'm tried to use monkey.patch_all(), but without success. from gevent import monkey monkey.patch_all() import gevent ...
2
votes
1answer
89 views

Bad interaction between Zope2 XML-RPC and AT Image mutator?

I am creating a demo for mr.migrator and have run in to an annoying problem, showcased here: # create image proxy = xmlrpclib.ServerProxy(url) # reset data = open('screenshot.png').read() try: ...
2
votes
2answers
493 views

problem with xmlrpc server

I run simple example with xmlrpc server and press Ctrl-C on keyboard :). from SimpleXMLRPCServer import SimpleXMLRPCServer from time import sleep import threading,time class ...
1
vote
1answer
51 views

xmlrpclib, wsapi4plone - check username and password

Here is one of my functions: def connect(): c = xmlrpclib.ServerProxy('http://username:password@host', allow_none=True, ) return c How do I check if the username ...
1
vote
1answer
185 views

How to check if a folder exists by its complete path in Plone?

I use xmlrpclib, wsapi4plone to connect to plone: client = xmlrpclib.ServerProxy('http://user:password@blah.com/plone') is there a method to check if a folder on plone exists by its url? something ...
1
vote
2answers
92 views

XML-RPC returning value before executing all function code

I have XML-RPC server: import time import xmlrpclib from SimpleXMLRPCServer import SimpleXMLRPCServer class Worker(object): def start_work(self): # is it possible do return value to ...
1
vote
2answers
133 views

xmlrpc newPaste - expected an object with the buffer interface

in py2 there was rv = xmlrpc.pastes.newPaste(language, code, None, filename, mimetype, private) I'm getting error : expected an object with the buffer interface Can't find any docs about xmlrpc ...
1
vote
1answer
639 views

“read” Data with multiple IDs from OpenERP using java with apache xml-rpc

Hi I am currently writing a servlet using Apache XML-RPC connecting to OpenERP. There are not any good resources around, and the java examples are very minimalistic and far from complete on the ...
1
vote
1answer
385 views

Safe way to connect to RPC server

This question is related to How do we handle Python xmlrpclib Connection Refused? When I try to use the following code, with my RPC server down, _get_rpc() returns False and I'm good to go. However ...
1
vote
1answer
296 views

How to see traceback on xmlrpc server, not client?

I have simple xmlrpc server code: from SimpleXMLRPCServer import SimpleXMLRPCServer port = 9999 def func(): print 'Hi!' print x # error! print 'Bye!' if __name__ == '__main__': ...
1
vote
1answer
250 views

how to send custom http_headers for RPC calls using python xmlrpclib?

How can I send custom HTTP Header using xmlrpclib library ! ? I need to send some special custom http_headers at the time of calling RPC methods.
1
vote
1answer
149 views

using special characters in functions: Python

I am writing an xmlrpc client which uses a server written in ruby. One of the functions is framework.busy?(). Let me show the ruby version: server.call( "framework.busy?" ) So lets assume I ...
1
vote
1answer
135 views

Can XML-RPC methods be called by name (as strings) in Python?

In python, calling XML-RPC methods involves invoking methods on a proxy object: from xmlrpclib import ServerProxy print ServerProxy('https://example.com/rpc').api.hello_there('John') In some other ...
1
vote
3answers
784 views

Timeout for xmlrpclib client requests

I am using Python's xmlrpclib to make requests to an xml-rpc service. Is there a way to set a client timeout, so my requests don't hang forever when the server is not available? I know I can ...
1
vote
1answer
440 views

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 ...
1
vote
1answer
240 views

How to expose client_address to all methods, using xmlrpclib?

I create little SimpleXMLRPCServer for check ip of client. I try this: Server import xmlrpclib from SimpleXMLRPCServer import SimpleXMLRPCServer server = SimpleXMLRPCServer(("localhost", 8000)) ...
0
votes
1answer
14 views

how to write python xml-rpc server-end code

client.py import xmlrpclib proxy = xmlrpclib.Server('http://localhost:9000') print proxy.blogger.getUsersBlogs("23251","xx","xx") server.py (not right) #encoding=utf-8 #!/usr/bin/env python from ...
0
votes
0answers
14 views

Is there an empty XMLRPM call?

I want to check if the remote XMLRPC server is alive and ready to accept requests and I would like to know if there is any "empty" XMLRPC request that I could use to check this. Don't suggest adding ...
0
votes
1answer
28 views

Dynamic method name generation using xmlrpc

How using Python I can dynamically generate my call to my xmlrpc server using xmlrpc lib? something like def call_method(method_name) server = Server(self.URL, transport=ProxiedTransport()) ...
0
votes
1answer
50 views

Using xmlrpclib with cookie obtained different way

How can I use xmlrpclib in Python script to connect to xmlrpc service that requires authentication, but without using xmlrpc authentication? To be specific: I use Drupal 7.8, there is of course ...
0
votes
2answers
51 views

Python: Is it possible to set the clientport with xmlrpclib?

Is it possible to set the clientport for the xmlrpc-connection? I want to say: Client should make a ServerProxy-object to over a specific client port or pseudocode something like this: serv ...
0
votes
1answer
175 views

xmlrpclib: dictionary key must be string type error

I would like some advice. I have encountered the following error in Python 2.6: Traceback (most recent call last): File "<pyshell#20>", line 1, in <module> s.Search(query) File ...
0
votes
1answer
107 views

How to handle multiple connections Abyss Server in XMLRPC - C++

The scenario is the next one: I have a XMLRPC-C++ applcation, listening for connections on PORT=8081. It implements an Abyss Server, using the xmlrpc-c library as next: xmlrpc_c::serverAbyss ...
0
votes
1answer
361 views

sending object (recursive data structures) by XML-RPC in python

I need to send an object through XML-RPC in python. My object consist of composite data type to populate a tree structure: class Node(object): '''Composite data type ''' def __init__(self, pData, ...
0
votes
1answer
896 views

How do we handle Python xmlrpclib Connection Refused?

I don't know what the heck I'm doing wrong here, I wrote have an RPC client trying to connect to a non-existent server, and I'm trying to handle the exception that is thrown, but no matter what I try ...
0
votes
1answer
231 views

How to set up encoding in XmlRpcLib in Python

I have client's file (in UTF-8) which includes that: uploader = xmlrpclib.Server('http://localhost:10000') file = open('[some_name]', 'rb') uploader.upload_file('[target]', f_name, file.read()) ...
0
votes
1answer
244 views

Error while pinging Pingomatic (XMLRPC) using python

I'm trying to ping Pingomatic using python. I've written this: import xmlrpclib print "START" s = xmlrpclib.Server('http://rpc.pingomatic.com') reply = ...
0
votes
1answer
99 views

Rails App Interface Architecture Design

I have a rails application that serves as an interface to a hybrid of data. Most of the information I require is retrieved from the command-line program using XML-RPC. Aside from this, I require some ...
0
votes
1answer
482 views

IronPython in C#: No module named xmlrpclib

I am trying to build a web application with an interactive console for IronPython. When I try to import xmlrpclib in IronPython's normal console, it works. However, if I use IronPython inside my C# ...
0
votes
0answers
100 views

xmlrpclib python - same script, different result

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 = ...
0
votes
2answers
92 views

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, ...
-2
votes
2answers
525 views

Call the Python interactive interpreter from within a Python script

Is there any way to start up the Python interpreter from within a script , in a manner similar to just using python -i so that the objects/namespace, etc. from the current script are retained? The ...