boriel.com

Hacks, science and curiosities

XML-RPC over a proxy server

– 🕓 1 min read

I had been looking for a way to call a function using XML-RPC in Python with the xmlrpclib class. The problem was I wanted to call it from within an organization behind an HTTP proxy, and the python object (ServerProxy) didn't allow it by default.

Nevertheless, if we look closer …