Label | Required. User provided label for the account instance. |
---|
Username
| The name for this account. Default value: [None] |
---|
Password
| The password for the account. Default value: [None] |
---|
Username Token Id | The value of Id attribute for the Username Token element. Default value: [None] |
---|
Must Understand | The checkbox to include value of Must Understand for the Security Token. Default value: [Unchecked] |
---|
WS-Security Version | The version of the WS-Security specification to follow. Default value: WS-Security 1.0 |
---|
Account EncryptionStandard Encryption | If you are using Standard Encryption, the High sensitivity settings under Enhanced Encryption are followed. |
---|
Enhanced Encryption | If you have the Enhanced Account Encryption feature, the following describes which fields are encrypted for each sensitivity level selected per each account. Account: - High:
- Medium + High:
- Low + Medium + High:
|
---|
The WSSE account for SOAP authentication enables the user to replace the security element from the SOAP header. All the necessary elements required for header must be included manually in the custom template. (The custom template does not generate it). For example, if the original request looks like: Code Block |
---|
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns0="urn:messages.ws.rightnow.com/v1_2">
<SOAP-ENV:Header>
<h:ClientInfoHeader
xmlns:h="urn:messages.ws.rightnow.com/v1_2"
xmlns="urn:messages.ws.rightnow.com/v1_2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<AppID>Contact Search</AppID>
</h:ClientInfoHeader>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
.....
</SOAP-ENV:Body>
</SOAP-ENV:Envelope> |
After adding the WSSE account, the request would be: Code Block |
---|
<SOAP-ENV:Envelope
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ns0="urn:messages.ws.rightnow.com/v1_2">
<SOAP-ENV:Header>
<h:ClientInfoHeader
xmlns:h="urn:messages.ws.rightnow.com/v1_2"
xmlns="urn:messages.ws.rightnow.com/v1_2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<AppID>Contact Search</AppID>
</h:ClientInfoHeader>
<o:Security s:mustUnderstand="1"
xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<o:UsernameToken>
<o:Username>XXXXXX</o:Username>
<o:Password>XXXXXXXXXX</o:Password>
</o:UsernameToken>
</o:Security>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
.....
</SOAP-ENV:Body>
</SOAP-ENV:Envelope> |
The security header would automatically be created from the account and added to the SOAP header. |