TIBCO eFTL™
Static Public Attributes | List of all members
TIBCO.EFTL.ConnectionListenerConstants Class Reference

Connection errors. More...

Static Public Attributes

static readonly int BAD_DATA = 1003
 
static readonly int BAD_PAYLOAD = 1007
 Invalid network data. Please report this error to TIBCO. More...
 
static readonly int BAD_SUBSCRIPTION_ID = 20
 
static readonly int CONNECTION_ERROR = 1006
 
static readonly int FAILED_TLS_HANDSHAKE = 1015
 
static readonly int FORCE_CLOSE = 4000
 
static readonly int MESSAGE_TOO_LARGE = 1009
 
static readonly int NORMAL = 1000
 
static readonly int NOT_AUTHENTICATED = 4002
 
static readonly int POLICY_VIOLATION = 1008
 
static readonly int PROTOCOL = 1002
 
static readonly int RESTART = 1012
 
static readonly int SEND_DISALLOWED = 12
 
static readonly int SERVER_ERROR = 1011
 
static readonly int SHUTDOWN = 1001
 

Detailed Description

Connection errors.

IConnectionListener.OnError returns these constants.

Member Data Documentation

readonly int TIBCO.EFTL.ConnectionListenerConstants.BAD_DATA = 1003
static

Invalid message from server. Please report this error to TIBCO.

readonly int TIBCO.EFTL.ConnectionListenerConstants.BAD_PAYLOAD = 1007
static

Invalid network data. Please report this error to TIBCO.

readonly int TIBCO.EFTL.ConnectionListenerConstants.BAD_SUBSCRIPTION_ID = 20
static

Bad subscription identifier.

Invalid subscription ID in an unsubscribe call.

readonly int TIBCO.EFTL.ConnectionListenerConstants.CONNECTION_ERROR = 1006
static

Connection error.

Programs may attempt to reconnect.

readonly int TIBCO.EFTL.ConnectionListenerConstants.FAILED_TLS_HANDSHAKE = 1015
static

SSL handshake failed.

The client could not establish a secure connection to the eFTL server.

Possible diagnoses:

  • Client rejected server certificate.
  • Encryption protocols do not match.
readonly int TIBCO.EFTL.ConnectionListenerConstants.FORCE_CLOSE = 4000
static

Force close.

The eFTL server closed the connection because another client with the same client identifier has connected.

readonly int TIBCO.EFTL.ConnectionListenerConstants.MESSAGE_TOO_LARGE = 1009
static

Message too large.

The eFTL server closed the connection because your program sent a message that exceeds the server's limit. (Administrators configure this limit; the default limit is 32 kilobytes.)

You may attempt to reconnect.

readonly int TIBCO.EFTL.ConnectionListenerConstants.NORMAL = 1000
static

Normal close.

Your program closed the connection by calling IConnection.Disconnect. You may now proceed with clean-up.

readonly int TIBCO.EFTL.ConnectionListenerConstants.NOT_AUTHENTICATED = 4002
static

Not authenticated.

The eFTL server could not authenticate the client's username and password.

readonly int TIBCO.EFTL.ConnectionListenerConstants.POLICY_VIOLATION = 1008
static

Policy violation. Please report this error to TIBCO.

readonly int TIBCO.EFTL.ConnectionListenerConstants.PROTOCOL = 1002
static

Protocol error. Please report this error to TIBCO.

Programs may wait, then attempt to connect again.

readonly int TIBCO.EFTL.ConnectionListenerConstants.RESTART = 1012
static

The server is restarting.

Programs may wait, then attempt to reconnect.

readonly int TIBCO.EFTL.ConnectionListenerConstants.SEND_DISALLOWED = 12
static

The server does not allow this user to publish messages.

Administrators configure permission to publish.

readonly int TIBCO.EFTL.ConnectionListenerConstants.SERVER_ERROR = 1011
static

eFTL server error. Please report this error to TIBCO.

readonly int TIBCO.EFTL.ConnectionListenerConstants.SHUTDOWN = 1001
static

The server shut down the connection.

Programs may wait, then attempt to reconnect.