Forum Discussion
Arthur_Chapin_1
Oct 13, 2005Nimbostratus
iRule to rewrite cookie domain
Can an irule be used to rewrite a cookies domain by intercepting the HTTP response, I am super new to iRules but I assume it would look something like this, im just not sure how the syntax should be
when HTTP_RESPONSE {
set cookieDomain [HTTP::cookie domain]
if { $cookieDomain contains "domainA" } {
HTTP::cookie domain replace "domainA" "domainB"
}
}
Any help would be greatly appreciated
Thanks
Arthur
- Brian_Gupta_115NimbostratusTry:
when HTTP_RESPONSE { set cookieDomain [HTTP::cookie domain "cookiename"] if { $cookieDomain contains "domainA" } { HTTP::cookie domain "cookiename" "domainB" } }
when HTTP_RESPONSE { set newdomain "abc.com" foreach mycookie [HTTP::cookie names] { HTTP::cookie domain $mycookie $newdomain } }
- Peter_BaumannCirrostratusVery cool! Thanks for sharing!
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