jesper-raemaekers / python-polarion

A Python package to access the Polarion WSDL API.
MIT License
57 stars 35 forks source link

Proxy #67

Closed maiducduy closed 2 years ago

maiducduy commented 2 years ago

I think it could be great if we could provide proxy information while creating an instance of Polarion as optional info.

jesper-raemaekers commented 2 years ago

Are you able to test with a proxy? If so, please take the code from the commit in this reference and try and use it like so:

pol = polarion.Polarion('http://<domain>/polarion', 'user', 'pw', proxy='ip:port')
kschmiechen commented 2 years ago

I'm not sure if this is also relevant for python, but to use proxies, the following fix needed to be implemented for the java client: https://issues.apache.org/jira/browse/AXIS-1356

maiducduy commented 2 years ago

It works well with proxy.

jesper-raemaekers commented 2 years ago

I'm not sure if this is also relevant for python, but to use proxies, the following fix needed to be implemented for the java client: https://issues.apache.org/jira/browse/AXIS-1356

Thank you for noticing and providing feedback. I do think this will not be an issue because it looks like a change inside the java library itself.

jesper-raemaekers commented 2 years ago

this has been merged and will be published in the next release