Forum Discussion
rockthef5
Jun 18, 2019Nimbostratus
header substr
Hi Guys, I have a header field coming from the http request. X-Akamai-Edgescape: georegion=263,country_code=US,region_code=MA,city=CAMBRIDGE,dma=506,pmsa=1120,areacode=617,county=MIDDLESEX,fips=25...
- Jun 18, 2019
Try this
when HTTP_REQUEST { if {[HTTP::header exists "X-Akamai-Edgescape"]} { set headerList [split [HTTP::header value "X-Akamai-Edgescape"] ,] set countryCode [lindex $headerList [lsearch -glob $headerList "country_code=*"]] HTTP::header insert "x-test" $countryCode } }
Lee_Sutcliffe
Jun 18, 2019Nacreous
Try this
when HTTP_REQUEST {
if {[HTTP::header exists "X-Akamai-Edgescape"]} {
set headerList [split [HTTP::header value "X-Akamai-Edgescape"] ,]
set countryCode [lindex $headerList [lsearch -glob $headerList "country_code=*"]]
HTTP::header insert "x-test" $countryCode
}
}
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects