Janek_42109
Mar 16, 2016Nimbostratus
iRule basic authentification on the node issue
Dear All,
I have an issue with a basic authentification on the node side. I'm using an iRule to manage the authentification like the following :
when HTTP_REQUEST {
set basicdata [b64encode "foo...
- Mar 17, 2016
Please try this iRule.
when HTTP_REQUEST { set data {foo:$AAAbb""*} set basicdata [b64encode $data] HTTP::header insert Authorization "Basic $basicdata" }