<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    Junky's IT Notebook

    統計

    留言簿(8)

    積分與排名

    WebSphere Studio

    閱讀排行榜

    評論排行榜

    LDAPErrorCodes

    Hex Decimal Constant: Description

    0x00

    0

    LDAP_SUCCESS: Indicates the requested client operation completed successfully.

    0x01

    1

    LDAP_OPERATIONS_ERROR: Indicates an internal error. The server is unable to respond with a more specific error and is also unable to properly respond to a request. It does not indicate that the client has sent an erroneous message.

    In NDS 8.3x through NDS 7.xx, this was the default error for NDS errors that did not map to an LDAP error code. To conform to the new LDAP drafts, NDS 8.5 uses 80 (0x50) for such errors.

    0x02

    2

    LDAP_PROTOCOL_ERROR: Indicates that the server has received an invalid or malformed request from the client.

    0x03

    3

    LDAP_TIMELIMIT_EXCEEDED: Indicates that the operation's time limit specified by either the client or the server has been exceeded. On search operations, incomplete results are returned.

    0x04

    4

    LDAP_SIZELIMIT_EXCEEDED: Indicates that in a search operation, the size limit specified by the client or the server has been exceeded. Incomplete results are returned.

    0x05

    5

    LDAP_COMPARE_FALSE: Does not indicate an error condition. Indicates that the results of a compare operation are false.

    0x06

    6

    LDAP_COMPARE_TRUE: Does not indicate an error condition. Indicates that the results of a compare operation are true.

    0x07

    7

    LDAP_AUTH_METHOD_NOT_SUPPORTED: Indicates that during a bind operation the client requested an authentication method not supported by the LDAP server.

    0x08

    8

    LDAP_STRONG_AUTH_REQUIRED: Indicates one of the following:

    • In bind requests, the LDAP server accepts only strong authentication.
    • In a client request, the client requested an operation such as delete that requires strong authentication.
    • In an unsolicited notice of disconnection, the LDAP server discovers the security protecting the communication between the client and server has unexpectedly failed or been compromised.

     

    0x09

    9

    Reserved.

    0x0A

    10

    LDAP_REFERRAL: Does not indicate an error condition. In LDAPv3, indicates that the server does not hold the target entry of the request, but that the servers in the referral field may.

    0x0B

    11

    LDAP_ADMINLIMIT_EXCEEDED: Indicates that an LDAP server limit set by an administrative authority has been exceeded.

    0x0C

    12

    LDAP_UNAVAILABLE_CRITICAL_EXTENSION: Indicates that the LDAP server was unable to satisfy a request because one or more critical extensions were not available. Either the server does not support the control or the control is not appropriate for the operation type.

    0x0D

    13

    LDAP_CONFIDENTIALITY_REQUIRED: Indicates that the session is not protected by a protocol such as Transport Layer Security (TLS), which provides session confidentiality.

    0x0E

    14

    LDAP_SASL_BIND_IN_PROGRESS: Does not indicate an error condition, but indicates that the server is ready for the next step in the process. The client must send the server the same SASL mechanism to continue the process.

    0x0F

    15

    Not used.

    0x10

    16

    LDAP_NO_SUCH_ATTRIBUTE: Indicates that the attribute specified in the modify or compare operation does not exist in the entry.

    0x11

    17

    LDAP_UNDEFINED_TYPE: Indicates that the attribute specified in the modify or add operation does not exist in the LDAP server's schema.

    0x12

    18

    LDAP_INAPPROPRIATE_MATCHING: Indicates that the matching rule specified in the search filter does not match a rule defined for the attribute's syntax.

    0x13

    19

    LDAP_CONSTRAINT_VIOLATION: Indicates that the attribute value specified in a modify, add, or modify DN operation violates constraints placed on the attribute. The constraint can be one of size or content (string only, no binary).

    0x14

    20

    LDAP_TYPE_OR_VALUE_EXISTS: Indicates that the attribute value specified in a modify or add operation already exists as a value for that attribute.

    0x15

    21

    LDAP_INVALID_SYNTAX: Indicates that the attribute value specified in an add, compare, or modify operation is an unrecognized or invalid syntax for the attribute.

     

    22-31

    Not used.

    0x20

    32

    LDAP_NO_SUCH_OBJECT: Indicates the target object cannot be found. This code is not returned on following operations:

    • Search operations that find the search base but cannot find any entries that match the search filter.
    • Bind operations.

     

    0x21

    33

    LDAP_ALIAS_PROBLEM: Indicates that an error occurred when an alias was dereferenced.

    0x22

    34

    LDAP_INVALID_DN_SYNTAX: Indicates that the syntax of the DN is incorrect. (If the DN syntax is correct, but the LDAP server's structure rules do not permit the operation, the server returns LDAP_UNWILLING_TO_PERFORM.)

    0x23

    35

    LDAP_IS_LEAF: Indicates that the specified operation cannot be performed on a leaf entry. (This code is not currently in the LDAP specifications, but is reserved for this constant.)

    0x24

    36

    LDAP_ALIAS_DEREF_PROBLEM: Indicates that during a search operation, either the client does not have access rights to read the aliased object's name or dereferencing is not allowed.

     

    37-47

    Not used.

    0x30

    48

    LDAP_INAPPROPRIATE_AUTH: Indicates that during a bind operation, the client is attempting to use an authentication method that the client cannot use correctly. For example, either of the following cause this error:

    • The client returns simple credentials when strong credentials are required.
    • The client returns a DN and a password for a simple bind when the entry does not have a password defined.

     

    0x31

    49

    LDAP_INVALID_CREDENTIALS: Indicates that during a bind operation one of the following occurred:

    • The client passed either an incorrect DN or password.
    • The password is incorrect because it has expired, intruder detection has locked the account, or some other similar reason.

     

    0x32

    50

    LDAP_INSUFFICIENT_ACCESS: Indicates that the caller does not have sufficient rights to perform the requested operation.

    0x33

    51

    LDAP_BUSY: Indicates that the LDAP server is too busy to process the client request at this time but if the client waits and resubmits the request, the server may be able to process it then.

    0x34

    52

    LDAP_UNAVAILABLE: Indicates that the LDAP server cannot process the client's bind request, usually because it is shutting down.

    0x35

    53

    LDAP_UNWILLING_TO_PERFORM: Indicates that the LDAP server cannot process the request because of server-defined restrictions. This error is returned for the following reasons:

    • The add entry request violates the server's structure rules.
    • The modify attribute request specifies attributes that users cannot modify.
    • Password restrictions prevent the action.
    • Connection restrictions prevent the action.

     

    0x36

    54

    LDAP_LOOP_DETECT: Indicates that the client discovered an alias or referral loop, and is thus unable to complete this request.

     

    55-63

    Not used.

    0x40

    64

    LDAP_NAMING_VIOLATION: Indicates that the add or modify DN operation violates the schema's structure rules. For example,

    • The request places the entry subordinate to an alias.
    • The request places the entry subordinate to a container that is forbidden by the containment rules.
    • The RDN for the entry uses a forbidden attribute type.

     

    0x41

    65

    LDAP_OBJECT_CLASS_VIOLATION: Indicates that the add, modify, or modify DN operation violates the object class rules for the entry. For example, the following types of request return this error:

    • The add or modify operation tries to add an entry without a value for a required attribute.
    • The add or modify operation tries to add an entry with a value for an attribute which the class definition does not contain.
    • The modify operation tries to remove a required attribute without removing the auxiliary class that defines the attribute as required.

     

    0x42

    66

    LDAP_NOT_ALLOWED_ON_NONLEAF: Indicates that the requested operation is permitted only on leaf entries. For example, the following types of requests return this error:

    • The client requests a delete operation on a parent entry.
    • The client request a modify DN operation on a parent entry.

     

    0x43

    67

    LDAP_NOT_ALLOWED_ON_RDN: Indicates that the modify operation attempted to remove an attribute value that forms the entry's relative distinguished name.

    0x44

    68

    LDAP_ALREADY_EXISTS: Indicates that the add operation attempted to add an entry that already exists, or that the modify operation attempted to rename an entry to the name of an entry that already exists.

    0x45

    69

    LDAP_NO_OBJECT_CLASS_MODS: Indicates that the modify operation attempted to modify the structure rules of an object class.

    0x46

    70

    LDAP_RESULTS_TOO_LARGE: Reserved for CLDAP.

    0x47

    71

    LDAP_AFFECTS_MULTIPLE_DSAS: Indicates that the modify DN operation moves the entry from one LDAP server to another and thus requires more than one LDAP server.

     

    72-79

    Not used.

    0x50

    80

    LDAP_OTHER: Indicates an unknown error condition. This is the default value for NDS error codes which do not map to other LDAP error codes.

     

     

     
    LDAP Status Code Meaning Exception or Action
    0 Success Report success.
    1 Operations error NamingException(in the API reference documentation)
    2 Protocol error CommunicationException(in the API reference documentation)
    3 Time limit exceeded. TimeLimitExceededException(in the API reference documentation)
    4 Size limit exceeded. SizeLimitExceededException(in the API reference documentation)
    5 Compared false. Used by DirContext.search()(in the API reference documentation). Does not generate an exception.
    6 Compared true. Used by DirContext.search()(in the API reference documentation). Does not generate an exception.
    7 Authentication method not supported. AuthenticationNotSupportedException(in the API reference documentation)
    8 Strong authentication required. AuthenticationNotSupportedException(in the API reference documentation)
    9 Partial results being returned. If the environment property "java.naming.referral" is set to "ignore" or the contents of the error do not contain a referral, throw a PartialResultException(in the API reference documentation). Otherwise, use contents to build a referral.
    10 Referral encountered. If the environment property "java.naming.referral" is set to "ignore", then ignore. If the property is set to "throw", throw ReferralException(in the API reference documentation). If the property is set to "follow", then the LDAP provider processes the referral. If the "java.naming.ldap.referral.limit" property has been exceeded, throw LimitExceededException(in the API reference documentation).
    11 Administrative limit exceeded. LimitExceededException(in the API reference documentation)
    12 Unavailable critical extension requested. OperationNotSupportedException(in the API reference documentation)
    13 Confidentiality required. AuthenticationNotSupportedException(in the API reference documentation)
    14 SASL bind in progress. Used internally by the LDAP provider during authentication.
    16 No such attribute exists. NoSuchAttributeException(in the API reference documentation)
    17 An undefined attribute type. InvalidAttributeIdentifierException(in the API reference documentation)
    18 Inappropriate matching InvalidSearchFilterException(in the API reference documentation)
    19 A constraint violation. InvalidAttributeValueException(in the API reference documentation)
    20 An attribute or value already in use. AttributeInUseException(in the API reference documentation)
    21 An invalid attribute syntax. InvalidAttributeValueException(in the API reference documentation)
    32 No such object exists. NameNotFoundException(in the API reference documentation)
    33 Alias problem NamingException(in the API reference documentation)
    34 An invalid DN syntax. InvalidNameException(in the API reference documentation)
    35 Is a leaf. Used by the LDAP provider; usually doesn't generate an exception.
    36 Alias dereferencing problem NamingException(in the API reference documentation)
    48 Inappropriate authentication AuthenticationNotSupportedException(in the API reference documentation)
    49 Invalid credentials AuthenticationException(in the API reference documentation)
    50 Insufficient access rights NoPermissionException(in the API reference documentation)
    51 Busy ServiceUnavailableException(in the API reference documentation)
    52 Unavailable ServiceUnavailableException(in the API reference documentation)
    53 Unwilling to perform OperationNotSupportedException(in the API reference documentation)
    54 Loop detected. NamingException(in the API reference documentation)
    64 Naming violation InvalidNameException(in the API reference documentation)
    65 Object class violation SchemaViolationException(in the API reference documentation)
    66 Not allowed on non-leaf. ContextNotEmptyException(in the API reference documentation)
    67 Not allowed on RDN. SchemaViolationException(in the API reference documentation)
    68 Entry already exists. NameAlreadyBoundException(in the API reference documentation)
    69 Object class modifications prohibited. SchemaViolationException(in the API reference documentation)
    71 Affects multiple DSAs. NamingException(in the API reference documentation)
    80 Other NamingException(in the API reference documentation)

     

     

    posted on 2007-06-26 10:33 junky 閱讀(951) 評論(0)  編輯  收藏 所屬分類: database

    主站蜘蛛池模板: 好男人视频在线观看免费看片| 亚洲天堂久久精品| AA免费观看的1000部电影| 久久国产福利免费| 亚洲AV无码一区二区三区网址| 亚洲色图在线观看| 在线观看亚洲天天一三视| 四虎成人免费大片在线| 免费观看国产网址你懂的| 免费国产成人α片| 亚洲精品视频免费| 黄页视频在线观看免费| 亚洲国产成人精品无码区二本| 亚洲乱码在线播放| 亚洲宅男永久在线| 亚洲av无码精品网站| 亚洲国产精品尤物yw在线| 在线观看免费国产视频| 久久不见久久见中文字幕免费| 91大神免费观看| 无码人妻一区二区三区免费看| 99免费精品视频| 一级特黄录像免费播放肥| 全部在线播放免费毛片| 免费在线人人电影网| 免费看黄网站在线看 | 午夜不卡久久精品无码免费 | 亚洲另类激情专区小说图片| 永久在线毛片免费观看| 免费观看a级毛片| 日韩高清在线免费看| 夭天干天天做天天免费看| 成人午夜大片免费7777| 天天摸天天碰成人免费视频| 国产成人免费高清激情视频| 久久WWW免费人成人片| 成年18网站免费视频网站| 午夜dj免费在线观看| 日本高清免费不卡在线| xvideos亚洲永久网址| 亚洲日本一区二区一本一道 |