Forum Discussion

eneR_159774's avatar
eneR_159774
Icon for Nimbostratus rankNimbostratus
Dec 04, 2014
Solved

Delete all Cookies if var x = true

Hello guys! I have a question regarding my extreme "huge" 😉 irule.   What is my goal?   Check if there are enough members in the "serverPool" >1 If not -> switch over to another "backupServ...
  • John_Alam_45640's avatar
    Dec 04, 2014

    To delete all cookies you need something like this:

       set cookieNames [HTTP::cookie names]
       foreach aCookie $cookieNames {
          HTTP::cookie remove $aCookie
       }