Click or drag to resize

RegistrationError Enumeration

User registration related errors.

Namespace:  Avaya.ClientServices
Assembly:  AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntax
C#
public enum RegistrationError
Members
  Member nameValueDescription
Unknown0 Registration was failed due to unknown error.
AuthenticationFailure1 Registration was failed due to authentication error.
ConnectionFailure2 Registration was failed due to connection error with the server.
UnsupportedLocalNetwork3 Registration has failed because the device is currently connected to an unsupported network type, e.g., IPv6-only network.
ServerUntrusted4 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.
InvalidDomain5 Registration was failed because the SIP service domain did not match.
InvalidState6 Registration request is not supported at this time.
ServerError7 Registration was failed due to an internal server error.
ServerEnded8 Registration was terminated by the server.
MaximumRegistrationsExceeded9 Registration was failed as the number of registrations has exceeded the configured limit.
Redirected10 Registration request has been redirected.
General11 Registration was failed due to generic error.
UnrecognizedServerName12 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.
SslFatalAlert13 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.
InvalidServerIdentity14 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.
InvalidSipDomain15 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.
ServerCertificateRevoked16 Reported when registration was failed because of the one or more certificates in the server certificate chain are revoked.
ServerConfigurationDataNotAvailable17 Reported when the configuration data for the user is not available at the server.
InvalidClientIdentityCertificateUnknownCA18 Reported when registration was failed because the client identity certificate presented by the client application is issued by unknown certificate authority(CA).
InvalidClientIdentityCertificateAccessDenied19 Reported when registration was failed because server has disallowed the connection for this client application in spite of trusted client identity certificate.
InvalidClientIdentityCertificateBadCertificate20 Reported when registration was failed due to bad (sometimes acts as generic error) client certificate.
InvalidClientIdentityCertificateUnsupported21 Reported when registration was failed because the client identity certificate presented by the client application is not supported by the server.
InvalidClientIdentityCertificateNoCertificate22 Reported when registration was failed because the client identity certificate presented by the client application is missing.
InvalidClientIdentityCertificateRevoked23 Reported when registration was failed because the client identity certificate presented by the client application is revoked.
InvalidClientIdentityCertificateExpired24 Reported when registration was failed because the client identity certificate presented by the client application is expired.
InvalidClientIdentityCertificateUnknown25 Reported when registration was failed because an unknown (unspecified) error has occurred on the server while validating the presented client identity certificate.
SSLHandshakeFailure26 Reported when registration was failed because client application is unable to negotiate an acceptable set of security parameters.
PrivateTrustStoreError27 Reported when registration was failed because client application has configured to use the private trust store via PrivateTrustStoreEnabled but it is unavailable.
See Also