Forum Discussion
dimka___104021
Nimbostratus
Jun 15, 2006http redirect to https
Hi,
I have set up VS with ssl on port 441. If client accesses http://192.168.3.3:441/ how can i redirect him to SSL VS https://192.168.3.3:441/ ?
tia,
Hi ib,
If you haven't already, I suggest opening a case with F5 Support. I am guessing this is probably a known issue.
Aaron
- Kevin_StewartMay 17, 2014
Employee
Okay, so let's say you have a periodic handler defined with arguments. Example:
sys icall handler periodic testlogger { arguments { { name test value blah } { name foo value bar } } interval 30 script testlogger }
To access those arguments within your script, you'd use the EVENT::context command inside a foreach loop. Something like this:
sys icall script /Common/testlogger { app-service none definition { foreach var { test foo } { set $var $EVENT::context($var) } tmsh::log "testing: ${test} - ${foo}" } description none events none }
and written up in article format here:
Passing Arguments to iCall Scripts