Forum Discussion
tidenz_92110
Nimbostratus
Jul 26, 2010Data Class to array
Hi Guys,
I am trying to reference a new external data class and read the contents into an array.
class URL_LIST
"/help" := "www.companya.com/help/get"
foreach...
Hi,
You can parse the query string parameter value and use it to persist off of. Will clients always send the parameter in each request? If so, here's an example to get started with:
when HTTP_REQUEST {
Check if query string parameter named SessionID has a value
http://devcentral.f5.com/wiki/default.aspx/iRules/uri__query
set sid [URI::query "?&[HTTP::query] &SessionID]
if {$sid ne ""}{
Persist off of the session ID value
persist uie $sid
}
}
Aaron
- Ido_Breger_3805Nov 17, 2008Historic F5 AccountHi,
- Hi,