Infor Federated Services authentication

Infor Federation Services (IFS) is a claim-based identity authentication system that is available through Infor OS Portal or Infor Ming.le.

IFS authentication is based on a set of IFS claims. The required claims are:

  • Tenant
  • Identity2
  • UPN
  • SecurityRole

Example

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
   <SOAP-ENV:Header>
      <XA:BeginSession xmlns:XA="urn:schemas-microsoft-com:xml-analysis" mustUnderstand="1"/>
   </SOAP-ENV:Header>
   <SOAP-ENV:Body>
      ...
      <Properties>
         <PropertyList>
            ...
            <IfsClaims>
               <Claim Name="http://schemas.xmlsoap.org/ws/2005/05/identity/claims/upn">john.doe@infor.com</Claim>
               <Claim Name="http://schemas.infor.com/claims/Tenant">BIDEV_PRD</Claim>
               <Claim Name="http://schemas.infor.com/claims/Identity2">65694e39-f9fd-4869-8821-0220c11901b8</Claim>
               <Claim Name="http://schemas.infor.com/claims/SecurityRole">BI-Users,BI-Admins</Claim>
               </IfsClaims>
               ...
         </PropertyList>
      </Properties>
      ...
   </SOAP-ENV:Body>
</SOAP-ENV:Envelope>