Product DocsMenu

User Identity XML File Format

This topic describes the format of the XML file generated when you export user identities (see Exporting/Importing User Identities). You can also manually create a user identity XML file using the syntax illustrated in the following example and XML element definitions.

Example: The following XML file contains two user identities.
<?xml version="1.0" encoding="UTF-8"?>
<UserIdentities> 
  <UserIdentity> 
    <Name>UserIdentity1</Name> 
    <User>testUser</User>
    <PasswordEncrypted>True</PasswordEncrypted>
    <Password>Ewc91LtKh5guM4yRphFZHw==</Password>
    <SupportBasicAuthentication>False</SupportBasicAuthentication>
  </UserIdentity>
  <UserIdentity>
    <Name>UserIdentity2</Name>
    <User>User</User>
    <PasswordEncrypted>False</PasswordEncrypted>
    <Password>SuperSecretPassword</Password>
    <SupportBasicAuthentication>False</SupportBasicAuthentication>
  </UserIdentity> 
</UserIdentities>  

UserIdentities

Main element that holds all user identity definitions.

UserIdentity

Element that holds the definition of a single user Identity.

Name

The name of the user identity.

User

The user ID of the user identity.

PasswordEncrypted

Boolean value indicating that the password is encrypted when set to True.

Note: When you export user identities from CES, the XML files generated by CES always contain encrypted passwords.

Password

The password of the user identity (encrypted or not).

SupportBasicAuthentication

Boolean value indicating that CES should allow the use of this user identity in Basic Authentication schemes when set to True.

People who viewed this topic also viewed