I'm attempting to authenticate to an ADFS server via active federation, but need to transform the incoming username via an AD/LDAP query before attempting to authenticate the user.
I'm using the UsernameMixed endpoint with a UserNameWSTrustBinding:
WSTrustChannelFactory factory = new WSTrustChannelFactory(new UserNameWSTrustBinding(SecurityMode.TransportWithMessageCredential), "https://nobody.com/adfs/services/trust/13/UsernameMixed");
factory.TrustVersion = TrustVersion.WSTrust13;
factory.Credentials.UserName.UserName = userName;
factory.Credentials.UserName.Password = password;
IWSTrustChannelContract channel = factory.CreateChannel();
RequestSecurityToken rst = new RequestSecurityToken(RequestTypes.Issue, WSTrust13Constants.KeyTypes.Bearer);
SecurityToken token = channel.Issue(rst);
My problem is, I want to transform the "username" passed to the endpoing to the user's email address (via AD or LDAP) on the ADFS server before running authentication. Is this possible to do?