APM Cookbook: Multiple Domain Authentication - Part 1
From time to time I receive requests on how to make APM authenticate against multiple domains. These organizations require unique domains for various user roles such as contractor versus employee or ...
Published Jun 20, 2014
Version 1.0Cody_Green
Employee
Joined December 29, 2011
Cody_Green
Employee
Joined December 29, 2011
Alton_104690
Aug 12, 2014Nimbostratus
I want to add that there is correct for TCL syntax. For most Domain they use ALL capital in the NETBIOS name. Therefore the
expr { [mcget {session.last.domain}] eq "Contractor"} will not work instead ignore case but making it not case sensitive. with this syntax:
expr { [string tolower [mcget {session.logon.last.domain}]] eq "contractor"}