Forum Discussion
Anthony_Gerace_
Oct 12, 2006Historic F5 Account
ClientSSL_clientCert variables not avail in HTTP_Request
Hi All,
I am working on an iRule that inserts the client certificate issuer and subject fields as a header for a terminated application. The following rule passes syntax checking, thou I see the log...
Deb_Allen_18
Aug 03, 2006Historic F5 Account
9.2.3 is the version my customer is using, and I have no insight into what other versions may be affected.
I have opened a case, waiting for a CR , will post it when I get it so you can watch the release notes for the fix.
In the meantime, you just need to validate any variable value you want to push into findclass. My customer coded around the issue by checking for null string and replacing with "-":
set FEHandler [findstr [HTTP::uri] "FeReqHdlg=" 10 "&"]
if { [string length $FEHandler] == 0} {
set FEHandler "-"
}
...[findclass $FEHandler $::FEserverClass]...
/deb