RegistrationError Enumeration |
User registration related errors.
Namespace:
Avaya.ClientServices
Assembly:
AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntaxpublic enum RegistrationError
Members
| Member name | Value | Description |
---|
| Unknown | 0 |
Registration was failed due to unknown error.
|
| AuthenticationFailure | 1 |
Registration was failed due to authentication error.
|
| ConnectionFailure | 2 |
Registration was failed due to connection error with the server.
|
| UnsupportedLocalNetwork | 3 |
Registration has failed because the device is currently connected to an unsupported network type, e.g., IPv6-only network.
|
| ServerUntrusted | 4 |
Registration failed because server certificate chain cannot be trusted.
This error is commonly reported if the client application does not have correct
CA certificate(s) provisioned in the certificate stores.
|
| InvalidDomain | 5 |
Registration was failed because the SIP service domain did not match.
|
| InvalidState | 6 |
Registration request is not supported at this time.
|
| ServerError | 7 |
Registration was failed due to an internal server error.
|
| ServerEnded | 8 |
Registration was terminated by the server.
|
| MaximumRegistrationsExceeded | 9 |
Registration was failed as the number of registrations has exceeded the configured limit.
|
| Redirected | 10 |
Registration request has been redirected.
|
| General | 11 |
Registration was failed due to generic error.
|
| UnrecognizedServerName | 12 |
Registration was failed because the server client is trying to connect to
did not recognize the value passed in TLS Server name indication extension
during TLS handshake.
|
| SslFatalAlert | 13 |
Reported when registration was failed because the client application has received
a fatal alert. The error indicates the server has rejected the SSL/TLS connection
attempt. Client application often see such error due to TLS Server Name Indication
failure.
|
| InvalidServerIdentity | 14 |
Reported when registration was failed because hostname(server) identity
match failure.
Server's presented identity does not match with an identity client
is expecting to connecting to.Server certificate must present appropriate
identity to avoid any Man-in-the-Middle(MITM) attacks.
|
| InvalidSipDomain | 15 |
Reported when registration was failed because hostname(server) identity
match failed for SIP service. Server's presented identity for SIP service
type does not match with a SIP domain client is trying to connect to.
Server certificate must present appropriate identity to avoid any
Man-in-the-Middle(MITM) attacks.
|
| ServerCertificateRevoked | 16 |
Reported when registration was failed because of the one or more certificates
in the server certificate chain are revoked.
|
| ServerConfigurationDataNotAvailable | 17 |
Reported when the configuration data for the user is not available at the server.
|
| InvalidClientIdentityCertificateUnknownCA | 18 |
Reported when registration was failed because the client identity
certificate presented by the client application is issued by
unknown certificate authority(CA).
|
| InvalidClientIdentityCertificateAccessDenied | 19 |
Reported when registration was failed because server has disallowed
the connection for this client application in spite of trusted
client identity certificate.
|
| InvalidClientIdentityCertificateBadCertificate | 20 |
Reported when registration was failed due to bad (sometimes acts as generic error)
client certificate.
|
| InvalidClientIdentityCertificateUnsupported | 21 |
Reported when registration was failed because the client identity
certificate presented by the client application is not supported
by the server.
|
| InvalidClientIdentityCertificateNoCertificate | 22 |
Reported when registration was failed because the client identity
certificate presented by the client application is missing.
|
| InvalidClientIdentityCertificateRevoked | 23 |
Reported when registration was failed because the client identity
certificate presented by the client application is revoked.
|
| InvalidClientIdentityCertificateExpired | 24 |
Reported when registration was failed because the client identity
certificate presented by the client application is expired.
|
| InvalidClientIdentityCertificateUnknown | 25 |
Reported when registration was failed because an unknown (unspecified)
error has occurred on the server while validating the
presented client identity certificate.
|
| SSLHandshakeFailure | 26 |
Reported when registration was failed because client application is unable
to negotiate an acceptable set of security parameters.
|
| PrivateTrustStoreError | 27 |
Reported when registration was failed because client application has configured
to use the private trust store via PrivateTrustStoreEnabled but
it is unavailable.
|
See Also