I have a simple code that works when I’m not behind any proxy but doesn’t work when I am behind a proxy. So is there any way I can specify that the connection has to be made through the http_proxy in the constructor of WSDL.Proxy class? I have been trying out ideone.py.
I have a simple code that works when I’m not behind any proxy but
Share
You’ll have to apply the following patch to
ideone.py:This will allow passing keyword arguments to the
WSDL.Proxywhich will be used to create its internalClient.SOAPProxyinstance.Client.SOAPProxyhas ahttp_proxykeyword argument, so then, after the patch applied,IdeOne(user='test', password='test', http_proxy='the.http.proxy')should work.