This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: xmlrpclib does not use http proxy
Type: Stage:
Components: Library (Lib) Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, effbot, greatred
Priority: normal Keywords:

Created on 2005-11-06 02:07 by greatred, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg26803 - (view) Author: John Beisley (greatred) Date: 2005-11-06 02:07
The xmlrpclib class ServerProxy does not seem to be
able to make use of a HTTP proxy. This makes it
unusable behind a firewall where the proxy is the only
access to the destination server.
msg26804 - (view) Author: Fredrik Lundh (effbot) * (Python committer) Date: 2005-11-12 10:32
Logged In: YES 
user_id=38376

To handle this, you can use a custom transport. Here's an
example:

http://lowlife.jp/nobonobo/wiki/xmlrpcwithproxy.html
msg26805 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2005-12-04 18:16
Logged In: YES 
user_id=11375

I have a documentation change ready to go; will check that
in once I get permission.
msg26806 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2005-12-08 14:55
Logged In: YES 
user_id=11375

Documentation changed in rev. 41636.  Thanks!

(Closing this bug, on the assumption that there's nothing
further to be done.)
History
Date User Action Args
2022-04-11 14:56:13adminsetgithub: 42558
2005-11-06 02:07:15greatredcreate