Configure a login scheme and service to identify the relying party

This service identifies the relying party for authentication, in this case, Infor OS as STS.
Note: These URLs appear in the example as if they have a return. They do not. Type them as a continuous string and do not include spaces.
  • <HTTPURL>
  • <HTTPSURL>
  • <SERVICEURL>
  1. In a text editor, create an XML file similar to the example.
    <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
    <BATCH_LOAD FORMAT="" OVERRIDE="false">
        <SERVICE>
            <HasCredential>true</HasCredential>
            <LoginProcedure>Form based</LoginProcedure>
            <ID>RELYING_PARTY_SERVICE_NAME</ID>
            <SvcEntryAttrList>password,USER</SvcEntryAttrList>
            <LOGINSCHEME NAME="Form">
    		        	<PROTOASSERT>Use HTTPS always</PROTOASSERT>
               <HTTPURL>http://YourServer.YourDomain.com:port/inforsts/infor
                 /00000000000000000000000000000000/idp/samlSSO</HTTPURL>
               <HTTPSURL>https://YourServer.YourDomain.com:port/inforsts/infor
                 /00000000000000000000000000000000/idp/samlSSO</HTTPSURL> 
               <PRIMARYTARGETLOOKUP>Use Claim Based</PRIMARYTARGETLOOKUP>
    	          <USERNAMEFIELD>_ssoUser</USERNAMEFIELD>	
               <PASSWDFIELD>_ssoPass</PASSWDFIELD>	
               <LOGIN_SUBMIT_METHOD>POST</LOGIN_SUBMIT_METHOD>	
               <LOGINSCHEMENAME>DEFAULT</LOGINSCHEMENAME>	
               <SERVICEURL>https://YourServer.YourDomain.com:port/inforsts/infor
                 /00000000000000000000000000000000/idp/samlSSO</SERVICEURL>
           </LOGINSCHEME>
            <IdentityAttrList>USER</IdentityAttrList>
            <CredentialAttrList>PASSWORD</CredentialAttrList>
        </SERVICE>
    </BATCH_LOAD>
    
    1. For <ID>: Provide an ID for the Infor OS as STS server. These instructions assume the service is named "INFORSTS_STS."
      <ID>INFORSTS_LSF</ID>
    2. Update the following parameters within <LOGINSCHEME>:
      • HTTPURL

      • HTTPSURL

      • SERVICEURL

      These parameters must all have the same information. For the Infor OS as STS portion of these parameters, specify the Global ID (GUID) of the Infor OS as STS server. Specify the Infor OS as STS portion of the URL exactly as shown, including the 32 zeros. Following is an example:

      https://YourServer.YourDomain.com:port/inforsts/infor/00000000000000000000000000000000/idp/samlSSO

  2. Save the XML definition file. It is a good idea to use a name that helps identify it, for example, INFORSTS_LSF.xml
    Note: If you need to reload the service after it was already loaded once (because for example you received an error message that led you to determine that your XML file needed updating), you will have to change the "OVERRIDE" parameter at the beginning of the file to "true".