Forum Discussion

Mike_Starling_1's avatar
Mike_Starling_1
Icon for Nimbostratus rankNimbostratus
Dec 27, 2013

(APM) I have a need to combine two fields from login page for AD authentication

In AD we have our user accounts in format of username.clientid

 

Our login page contains fields for: username, password and clientid. Username in format of login page entry is just the user's name without the client id attached.

 

Can anyone assist with the process to concatenate the username and clientid in format listed above for AD authentication "username.clientid"?

 

Thanks

 

1 Reply

  • You could probably do two things:

    1. Require the user to enter username.clientid in the logon form, or

    2. Request them separately and concatenate in a variable assignment agent. Something like this:

      session.logon.last.username = return { [mcget {session.logon.last.username}].[mcget {session.logon.last.clientid}] }