EldoS
MsgConnect home / Documentation / Error codes and descriptions
Navigation
Web site
Support
Table Of Contents

Filter: C++  Pascal  ActiveX  C# VB.NET  Java SE  Java ME  Palm  DLL 


Error codes and descriptions

See error code declarations below.
Error [C++] [Pascal] [C#] [Java SE] [Java ME] [Palm] Value Description
WrongReceiverThread + + + n/a n/a + 1 The method should be called within Messenger creator thread context. This error is obsolete.
WrongSenderThread + + + + only MIDP2 + 2 Use destination messenger's thread context. This error is obsolete.
NoQueueName + + + + + + 3 Messenger queue name must be specified
BadTransport + + + + + + 4 No transport with the name specified in destination address has been found.
BadDestinationName + + + + + + 5 bad destination address format
SecurityInitFailed + + + + + + 6 security descriptor initialization failed
GenTransportFailure + + + + + + 8 Transport failure due to unexpected error
NoDecryptor + + + + + + 9 Decryptor is not found
InvalidSignature + + + + + + 12 Invalid signature in data stream.
TransportTimeout + + + + + + 13 transport reported timeout during message transfer
InvalidEncryptionKey + + + + + + 14 invalid key specified for encryption component
NotEnoughMemory + + + + + + 15 not enough memory to perform operation
WrongCredentials + + + + + + 16 sender presented invalid credentials which were not validated by recipient.
ThreadCreateError + n/a n/a n/a n/a + 19 Internally used error code.
ThreadError + n/a n/a n/a n/a + 20 Internally used error code.
ReplyDeferred + + + + + + 25 Internally used error code.
NoTransformer + + + + + + 26 Sender of the message used encryptor, compressor or signer component which is not available on destination host.
RoutingNotAllowed + + + + + + 27 property RoutingAllowed of some intermediate transprot set to False. Do not route messages to this transport.
TransportInactive + + + + + + 28 The transport, specified in destination address, has been found but is inactive. MsgConnect doesn't deliver messages via inactive transports.
Cancelled + + + + + + 50 This error code is used to notify the callback that the message has been cancelled in code.
Shutdown + + + + + + 51 The transport that had to deliver the message is going inactive.
PacketTooLarge + + + + + + 52 The size of the packet prepared for delivery with UDP transport exeeds 512 bytes.
NoMessengerName + + + - - - 101 MessengerName is not set for MMF transport.
MMFCreationFailed + + + - - - 102 Memory mapping creation failed in MMF transport.
MutexCreationFailed + + + - - - 103 Mutex creation failed in MMF transport.
NotASocket + + + + + + 201 Socket handle has not been initialized.
WrongSocketState + + + + + + 202 Socket is not in the state that supports requested operation.
WinsockInitFailed + + n/a n/a n/a n/a 203 Network library initialization failed
InvalidAddress + + + + + + 204 Invalid IP address used.
ConnectionFailed + + + + + + 205 Failed to establish TCP connection.
ConnectionLost + + + + + + 206 Connection to remote host was unexpectedly terminated
WrongSocketResult + + + + only MIDP2 + 207 UDP SendTo operation returned wrong (unacceptable) result
WrongSocketType + + + + + + 208 Operation can not be performed on socket of given type (stream or datagram)
InvalidHTTP + + + + + + 301 Invalid chunked data sequence detected in HTTP data stream
SocksNoAcceptableAuthMethods + + + + + + 501 Socks: Server doesn't support requested authentication method
SocksAuthFailure + + + + + + 502 Socks: Authentication failure
SocksGenFailure + + + + + + 503 General SOCKS server failure
SocksNotallowed + + + + + + 504 Socks: connection not allowed by ruleset
SocksNetUnreachable + + + + + + 505 Socks: Network unreachable
SocksHostUnreachable + + + + + + 506 Socks: Host unreachable
SocksConnectionRefused + + + + + + 507 Socks: Connection refused
SocksTTLExpired + + + + + + 508 Socks: TTL expired
SocksCmdNotSupported + + + + + + 509 Socks: Command not supported
SocksAddrTypeNotSupported + + + + + + 510 Socks: Address type not supported

Declarations

[C++]
enum {
    MCError_WrongReceiverThread = 1,
    MCError_WrongSenderThread = 2,
    MCError_NoQueueName = 3,
    MCError_BadTransport = 4,
    MCError_BadDestinationName = 5,
    MCError_SecurityInitFailed = 6,
    MCError_GenTransportFailure = 8,
    MCError_NoDecryptor = 9,
    MCError_NoDecompressor = 10,
    MCError_NoSignatureHandler = 11,
    MCError_InvalidSignature = 12,
    MCError_TransportTimeout = 13,
    MCError_InvalidEncryptionKey= 14,
    MCError_NotEnoughMemory = 15,
    MCError_WrongCredentials = 16,
    MCError_ThreadCreateError = 19,
    MCError_ThreadError = 20,
    MCError_ReplyDeferred = 25,
    MCError_NoTransformer = 26,
    MCError_RoutingNotAllowed = 27,
    MCError_TransportInactive = 28,
    MCError_Cancelled = 50,
    MCError_Shutdown = 51,
    MCError_PacketTooLarge = 52,
    MCError_NoMessengerName = 101,
    MCError_MMFCreationFailed = 102,
    MCError_MutexCreationFailed = 103,
    MCError_NotASocket = 201,
    MCError_WrongSocketState = 202,
    MCError_WinsockInitFailed = 203,
    MCError_InvalidAddress = 204,
    MCError_ConnectionFailed = 205,
    MCError_ConnectionLost = 206,
    MCError_WrongSocketResult = 207,
    MCError_WrongSocketType = 208,
    MCError_InvalidHTTP = 301,
    MCError_SocksNoAcceptableAuthMethods = 501,
    MCError_SocksAuthFailure = 502,
    MCError_SocksGenFailure = 503,
    MCError_SocksNotallowed = 504,
    MCError_SocksNetUnreachable = 505,
    MCError_SocksHostUnreachable = 506,
    MCError_SocksConnectionRefused = 507,
    MCError_SocksTTLExpired = 508,
    MCError_SocksCmdNotSupported = 509,
    MCError_SocksAddrTypeNotSupported = 510
};

[Pascal]
    MCError_WrongReceiverThread = 1;
    MCError_WrongSenderThread = 2;
    MCError_NoQueueName = 3;
    MCError_BadTransport = 4;
    MCError_BadDestinationName = 5;
    MCError_SecurityInitFailed = 6;
    MCError_GenTransportFailure = 8;
    MCError_NoDecryptor = 9;
    MCError_NoDecompressor = 10;
    MCError_NoSignatureHandler = 11;
    MCError_InvalidSignature = 12;
    MCError_TransportTimeout = 13;
    MCError_InvalidEncryptionKey = 14;
    MCError_NotEnoughMemory = 15;
    MCError_WrongCredentials = 16;
    MCError_ReplyDeferred = 25;
    MCError_NoTransformer = 26;
    MCError_RoutingNotAllowed = 27;
    MCError_TransportInactive = 28;
    MCError_Cancelled = 50;
    MCError_Shutdown = 51;
    MCError_PacketTooLarge = 52;
    MCError_NoMessengerName = 101;
    MCError_MMFCreationFailed = 102;
    MCError_MutexCreationFailed = 103;
    MCError_NotASocket = 201;
    MCError_WrongSocketState = 202;
    MCError_WinsockInitFailed = 203;
    MCError_InvalidAddress = 204;
    MCError_ConnectionFailed = 205;
    MCError_ConnectionLost = 206;
    MCError_WrongSocketResult = 207;
    MCError_WrongSocketType = 208;
    MCError_InvalidHTTP = 301;
    MCError_SocksNoAcceptableAuthMethods = 501;
    MCError_SocksAuthFailure = 502;
    MCError_SocksGenFailure = 503;
    MCError_SocksNotallowed = 504;
    MCError_SocksNetUnreachable = 505;
    MCError_SocksHostUnreachable = 506;
    MCError_SocksConnectionRefused = 507;
    MCError_SocksTTLExpired = 508;
    MCError_SocksCmdNotSupported = 509;
    MCError_SocksAddrTypeNotSupported = 510;

[ActiveX]
    not applicable;

[C#]
public class MCError: Exception
{
    public const int WrongReceiverThread = 1;
    public const int WrongSenderThread = 2;
    public const int NoQueueName = 3;
    public const int BadTransport = 4;
    public const int BadDestinationName = 5;
    public const int SecurityInitFailed = 6;
    public const int GenTransportFailure = 8;
    public const int NoDecryptor = 9;
    public const int NoDecompressor = 10;
    public const int NoSignatureHandler = 11;
    public const int InvalidSignature = 12;
    public const int TransportTimeout = 13;
    public const int InvalidEncryptionKey= 14;
    public const int NotEnoughMemory = 15;
    public const int WrongCredentials = 16;
    public const int ReplyDeferred = 25;
    public const int NoTransformer = 26;
    public const int RoutingNotAllowed = 27;
    public const int TransportInactive = 28;
    public const int Cancelled = 50;
    public const int Shutdown = 51;
    public const int PacketTooLarge = 52;
    public const int NoMessengerName = 101;
    public const int MMFCreationFailed = 102;
    public const int MutexCreationFailed = 103;
    public const int NotASocket = 201;
    public const int WrongSocketState = 202;
    public const int WinsockInitFailed = 203;
    public const int InvalidAddress = 204;
    public const int ConnectionFailed = 205;
    public const int ConnectionLost = 206;
    public const int WrongSocketResult = 207;
    public const int WrongSocketType = 208;
    public const int InvalidHTTP = 301;
    public const int SocksNoAcceptableAuthMethods = 501;
    public const int SocksAuthFailure = 502;
    public const int SocksGenFailure = 503;
    public const int SocksNotAllowed = 504;
    public const int SocksNetUnreachable = 505;
    public const int SocksHostUnreachable = 506;
    public const int SocksConnectionRefused = 507;
    public const int SocksTTLExpired = 508;
    public const int SocksCmdNotSupported = 509;
    public const int SocksAddrTypeNotSupported = 510;
}

[Java]
public class EMCError extends java.lang.Exception {
    public static final int WrongReceiverThread = 1;
    public static final int WrongSenderThread = 2;
    public static final int NoQueueName = 3;
    public static final int BadTransport = 4;
    public static final int BadDestinationName = 5;
    public static final int SecurityInitFailed = 6;
    public static final int GenTransportFailure = 8;
    public static final int NoDecryptor = 9;
    public static final int NoDecompressor = 10;
    public static final int NoSignatureHandler = 11;
    public static final int InvalidSignature = 12;
    public static final int TransportTimeout = 13;
    public static final int InvalidEncryptionKey = 14;
    public static final int NotEnoughMemory = 15;
    public static final int WrongCredentials = 16;
    
    public static final int NoTransformer = 26;
    public static final int RoutingNotAllowed = 27;
    public static final int TransportInactive = 28;
    public static final int Cancelled = 50;
    public static final int Shutdown = 51;
    public static final int PacketTooLarge = 52;
    public static final int NotASocket = 201;
    public static final int WrongSocketState = 202;
    public static final int SockInitFailed = 203;
    public static final int InvalidAddress = 204;
    public static final int ConnectionFailed = 205;
    public static final int ConnectionLost = 206;
    public static final int WrongSocketResult = 207;
    public static final int WrongSocketType = 208;
    public static final int InvalidHTTP = 301;
    public static final int SocksNoAcceptableAuthMethods = 501;
    public static final int SocksAuthFailure = 502;
    public static final int SocksGenFailure = 503;
    public static final int SocksNotAllowed = 504;
    public static final int SocksNetUnreachable = 505;
    public static final int SocksHostUnreachable = 506;
    public static final int SocksConnectionRefused = 507;
    public static final int SocksTTLExpired = 508;
    public static final int SocksCmdNotSupported = 509;
    public static final int SocksAddrTypeNotSupported = 510
}

[JavaME] MIDP2
public class EMCError
    extends java.lang.Exception {
    //public static final int WrongReceiverThread = 1;
    public static final int WrongSenderThread = 2;
    public static final int NoQueueName = 3;
    public static final int BadTransport = 4;
    public static final int BadDestinationName = 5;
    public static final int SecurityInitFailed = 6;
    public static final int GenTransportFailure = 8;
    public static final int NoDecryptor = 9;
    public static final int NoDecompressor = 10;
    public static final int NoSignatureHandler = 11;
    public static final int InvalidSignature = 12;
    public static final int TransportTimeout = 13;
    public static final int InvalidEncryptionKey = 14;
    public static final int NotEnoughMemory = 15;
    public static final int WrongCredentials = 16;
    public static final int ReplyDeferred = 25;
    public static final int NoTransformer = 26;
    public static final int RoutingNotAllowed = 27;
    public static final int TransportInactive = 28;
    public static final int Cancelled = 50;
    public static final int Shutdown = 51;
    public static final int PacketTooLarge = 52;
    public static final int NotASocket = 201;
    public static final int WrongSocketState = 202;
    public static final int SockInitFailed = 203;
    public static final int InvalidAddress = 204;
    public static final int ConnectionFailed = 205;
    public static final int ConnectionLost = 206;
    public static final int WrongSocketResult = 207;
    public static final int WrongSocketType = 208;
    public static final int InvalidHTTP = 301;
    public static final int SocksNoAcceptableAuthMethods = 501;
    public static final int SocksAuthFailure = 502;
    public static final int SocksGenFailure = 503;
    public static final int SocksNotAllowed = 504;
    public static final int SocksNetUnreachable = 505;
    public static final int SocksHostUnreachable = 506;
    public static final int SocksConnectionRefused = 507;
    public static final int SocksTTLExpired = 508;
    public static final int SocksCmdNotSupported = 509;
    public static final int SocksAddrTypeNotSupported = 510
    }

[JavaME] MIDP1
public class EMCError
    extends java.lang.Exception {
    public static final int NoQueueName = 3;
    public static final int BadTransport = 4;
    public static final int BadDestinationName = 5;
    public static final int SecurityInitFailed = 6;
    public static final int GenTransportFailure = 8;
    public static final int NoDecryptor = 9;
    public static final int NoDecompressor = 10;
    public static final int NoSignatureHandler = 11;
    public static final int InvalidSignature = 12;
    public static final int TransportTimeout = 13;
    public static final int InvalidEncryptionKey = 14;
    public static final int NotEnoughMemory = 15;
    public static final int WrongCredentials = 16;
    public static final int ReplyDeferred = 25;
    public static final int NoTransformer = 26;
    public static final int RoutingNotAllowed = 27;
    public static final int TransportInactive = 28;
    public static final int Cancelled = 50;
    public static final int Shutdown = 51;
    public static final int PacketTooLarge = 52;
    public static final int NotASocket = 201;
    public static final int WrongSocketState = 202;
    public static final int SockInitFailed = 203;
    public static final int InvalidAddress = 204;
    public static final int ConnectionFailed = 205;
    public static final int ConnectionLost = 206;
    public static final int WrongSocketResult = 207;
    public static final int WrongSocketType = 208;
    public static final int InvalidHTTP = 301;
    }

[Palm]
enum {
    MCError_WrongReceiverThread = 1,
    MCError_WrongSenderThread = 2,
    MCError_NoQueueName = 3,
    MCError_BadTransport = 4,
    MCError_BadDestinationName = 5,
    MCError_SecurityInitFailed = 6,
    MCError_GenTransportFailure = 8,
    MCError_NoDecryptor = 9,
    MCError_NoDecompressor = 10,
    MCError_NoSignatureHandler = 11,
    MCError_InvalidSignature = 12,
    MCError_TransportTimeout = 13,
    MCError_InvalidEncryptionKey= 14,
    MCError_NotEnoughMemory = 15,
    MCError_WrongCredentials = 16,
    MCError_CheckSynchronizeError = 18,
    MCError_ThreadCreateError = 19,
    MCError_ThreadError = 20,
    MCError_ReplyDeferred = 25,
    MCError_NoTransformer = 26,
    MCError_RoutingNotAllowed = 27,
    MCError_TransportInactive = 28,
    MCError_Cancelled = 50,
    MCError_Shutdown = 51,
    MCError_PacketTooLarge = 52,
    MCError_NoMessengerName = 101,
    MCError_MMFCreationFailed = 102,
    MCError_MutexCreationFailed = 103,
    MCError_NotASocket = 201,
    MCError_WrongSocketState = 202,
    MCError_WinsockInitFailed = 203,
    MCError_InvalidAddress = 204,
    MCError_ConnectionFailed = 205,
    MCError_ConnectionLost = 206,
    MCError_WrongSocketResult = 207,
    MCError_WrongSocketType = 208,
    MCError_InvalidHTTP = 301,
    MCError_SocksNoAcceptableAuthMethods = 501,
    MCError_SocksAuthFailure = 502,
    MCError_SocksGenFailure = 503,
    MCError_SocksNotallowed = 504,
    MCError_SocksNetUnreachable = 505,
    MCError_SocksHostUnreachable = 506,
    MCError_SocksConnectionRefused = 507,
    MCError_SocksTTLExpired = 508,
    MCError_SocksCmdNotSupported = 509,
    MCError_SocksAddrTypeNotSupported = 510
};

[DLL]
    not applicable;

 
Contact Us | Subscribe | Terms of Use | Trademarks | Privacy Statement
Copyright (c) 1998-2005, EldoS Corporation