Forum Discussion
Sep 07, 2023
Hi ,Can you try to use an irule to remove the cookie for example:
rule remove_cookie
when HTTP_RESPONSE { HTTP::cookie remove "MYCOOKIE" } }
In the case it remove both cookies you can try to added again with the irule but in this case is only going to add 1
cookie and not a dupplicated
The command to insert the cookie is:
HTTP::cookie insert name <name> value <value> [path <path>] [domain <domain>] [version <0 | 1 | 2>]