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.

Author ced
Recipients ced, matrixise
Date 2018-11-03.12:57:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1541249829.89.0.788709270274.issue35153@psf.upfronthosting.co.za>
In-reply-to
Content
We have a library proteus which uses xmlrpc.client to connect to our server. The server support basic authentication but also session authentication. The session authentication is much faster because the password hash verification is slow by design.
So to be able to use our session authentication method with the library, we need to be able to set our own Authorization header to the ServerProxy. It could be done with a custom Transport class but then we will have to do it twice for Transport and SafeTransport and to replicate the code that select the class out of the uri.
The proposal started from this discussion: https://bugs.tryton.org/issue7783
History
Date User Action Args
2018-11-03 12:57:09cedsetrecipients: + ced, matrixise
2018-11-03 12:57:09cedsetmessageid: <1541249829.89.0.788709270274.issue35153@psf.upfronthosting.co.za>
2018-11-03 12:57:09cedlinkissue35153 messages
2018-11-03 12:57:09cedcreate