on 18-Mar-2015 15:20
Problem this snippet solves:
This sample goes along with the Tech Tip titled Session Table Exporting With iRules . It creates a mechanism for you to export the data from your session tables for archiving or external reporting.
NOTE: It will be necessary: To fix the following line: //--></script>
To be a normal script tag: //-->
Code :
when HTTP_REQUEST { switch -glob [string tolower [HTTP::uri]] { "/exporttable" { HTTP::respond 200 Content {iRule Table Exporter
There is one little mistake.
In line 5, "Content" is to be "content" and then It works properly.
Thanks Joe 🙂