2086N/A# CDDL HEADER START
2086N/A#
2086N/A# The contents of this file are subject to the terms of the
2086N/A# Common Development and Distribution License, Version 1.0 only
2086N/A# (the "License"). You may not use this file except in compliance
2086N/A# with the License.
2086N/A#
2086N/A# You can obtain a copy of the license at
2086N/A# trunk/opends/resource/legal-notices/OpenDS.LICENSE
2086N/A# or https://OpenDS.dev.java.net/OpenDS.LICENSE.
2086N/A# See the License for the specific language governing permissions
2086N/A# and limitations under the License.
2086N/A#
2086N/A# When distributing Covered Code, include this CDDL HEADER in each
2086N/A# file and include the License file at
2086N/A# trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
2086N/A# add the following below this CDDL HEADER, with the fields enclosed
2086N/A# by brackets "[]" replaced with your own identifying information:
2086N/A# Portions Copyright [yyyy] [name of copyright owner]
2086N/A#
2086N/A# CDDL HEADER END
2086N/A#
4383N/A# Copyright 2006-2009 Sun Microsystems, Inc.
6134N/A# Portions copyright 2013 ForgeRock AS
2122N/A
2086N/A
2086N/A
2086N/A#
2086N/A# Global directives
2086N/A#
2086N/Aglobal.category=PROTOCOL
2086N/A
2086N/A#
2086N/A# Format string definitions
2086N/A#
2086N/A# Keys must be formatted as follows:
2086N/A#
2086N/A# [SEVERITY]_[DESCRIPTION]_[ORDINAL]
2086N/A#
2086N/A# where:
2086N/A#
2086N/A# SEVERITY is one of:
2086N/A# [INFO, MILD_WARN, SEVERE_WARN, MILD_ERR, SEVERE_ERR, FATAL_ERR, DEBUG, NOTICE]
2086N/A#
2086N/A# DESCRIPTION is an upper case string providing a hint as to the context of
2086N/A# the message in upper case with the underscore ('_') character serving as
2086N/A# word separator
2086N/A#
2086N/A# ORDINAL is an integer unique among other ordinals in this file
2086N/A#
4134N/AMILD_ERR_ASN1_TRUCATED_TYPE_BYTE_1=Cannot decode the ASN.1 element because an \
4134N/A unexpected end of file was reached while reading the type byte
4134N/AMILD_ERR_ASN1_TRUNCATED_LENGTH_BYTE_2=Cannot decode the ASN.1 element because \
4134N/A an unexpected end of file was reached while reading the first length byte
4134N/AMILD_ERR_ASN1_INVALID_NUM_LENGTH_BYTES_3=Cannot decode the ASN.1 element \
4134N/A because it contained a multi-byte length with an invalid number of bytes (%d)
4134N/AMILD_ERR_ASN1_TRUNCATED_LENGTH_BYTES_4=Cannot decode the ASN.1 element because \
4134N/A an unexpected end of file was reached while reading a multi-byte length of \
4134N/A %d bytes
4134N/AMILD_ERR_ASN1_BOOLEAN_TRUNCATED_VALUE_5=Cannot decode the ASN.1 boolean \
4134N/A element of because an unexpected end of file was reached while reading value \
4134N/A bytes (%d)
4134N/AMILD_ERR_ASN1_BOOLEAN_INVALID_LENGTH_6=Cannot decode the ASN.1 \
4134N/A boolean element because the decoded value length was not exactly one byte \
4134N/A (decoded length was %d)
4134N/AMILD_ERR_ASN1_NULL_TRUNCATED_VALUE_7=Cannot decode the ASN.1 null \
4134N/A element of because an unexpected end of file was reached while reading value \
4134N/A bytes (%d)
4134N/AMILD_ERR_ASN1_NULL_INVALID_LENGTH_8=Cannot decode the ASN.1 null element \
4134N/A because the decoded value length was not exactly zero bytes \
4134N/A (decoded length was %d)
4134N/AMILD_ERR_ASN1_OCTET_STRING_TRUNCATED_VALUE_9=Cannot decode the ASN.1 octet \
4134N/A string element of because an unexpected end of file was reached while reading \
4134N/A value bytes (%d)
4134N/AMILD_ERR_ASN1_INTEGER_TRUNCATED_VALUE_10=Cannot decode the ASN.1 integer \
4134N/A element of because an unexpected end of file was reached while reading \
4134N/A value bytes (%d)
4134N/AMILD_ERR_ASN1_INTEGER_INVALID_LENGTH_11=Cannot decode the \
4134N/A provided ASN.1 integer element because the length of the \
2086N/A element value was not between one and four bytes (actual length was %d)
4134N/AMILD_ERR_ASN1_SEQUENCE_READ_NOT_STARTED_12=Cannot decode the end of the ASN.1 \
4134N/A sequence or set because the start of the sequence was not read
4134N/AMILD_ERR_ASN1_SEQUENCE_READ_NOT_ENDED_13=Cannot decode the end of the ASN.1 \
4134N/A sequence or set because %d bytes are not read from the sequence of %d bytes \
4134N/A in length
4134N/AMILD_ERR_ASN1_SKIP_TRUNCATED_VALUE_14=Cannot skip the ASN.1 element of because \
4134N/A an unexpected end of file was reached while reading value bytes (%d)
4134N/AMILD_ERR_ASN1_SEQUENCE_SET_TRUNCATED_VALUE_15=Cannot decode the ASN.1 sequence \
4134N/A or set element of because an unexpected end of file was reached while reading \
4134N/A value bytes (%d)
2086N/AMILD_ERR_LDAP_MESSAGE_DECODE_NULL_45=Cannot decode the provided ASN.1 \
2086N/A sequence as an LDAP message because the sequence was null
2086N/AMILD_ERR_LDAP_MESSAGE_DECODE_INVALID_ELEMENT_COUNT_46=Cannot decode the \
2086N/A provided ASN.1 sequence as an LDAP message because the sequence contained an \
2086N/A invalid number of elements (expected 2 or 3, got %d)
2086N/AMILD_ERR_LDAP_MESSAGE_DECODE_MESSAGE_ID_47=Cannot decode the provided ASN.1 \
2086N/A sequence as an LDAP message because the first element of the sequence could \
2086N/A not be decoded as an integer message ID: %s
2086N/AMILD_ERR_LDAP_MESSAGE_DECODE_PROTOCOL_OP_48=Cannot decode the provided ASN.1 \
2086N/A sequence as an LDAP message because the second element of the sequence could \
2086N/A not be decoded as the protocol op: %s
2086N/AMILD_ERR_LDAP_MESSAGE_DECODE_CONTROLS_49=Cannot decode the provided ASN.1 \
2086N/A sequence as an LDAP message because the third element of the sequence could \
2086N/A not be decoded as the set of controls: %s
2086N/AMILD_ERR_LDAP_CONTROL_DECODE_NULL_50=Cannot decode the provided ASN.1 element \
2086N/A as an LDAP control because the element was null
2086N/AMILD_ERR_LDAP_CONTROL_DECODE_SEQUENCE_51=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP control because the element could not be decoded as a \
2086N/A sequence: %s
2086N/AMILD_ERR_LDAP_CONTROL_DECODE_INVALID_ELEMENT_COUNT_52=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP control because the control sequence \
2086N/A contained an invalid number of elements (expected 1 to 3, got %d)
2086N/AMILD_ERR_LDAP_CONTROL_DECODE_OID_53=Cannot decode the provided ASN.1 element \
2086N/A as an LDAP control because the OID could not be decoded as a string: %s
2086N/AMILD_ERR_LDAP_CONTROL_DECODE_CRITICALITY_54=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP control because the criticality could not be decoded as \
2086N/A Boolean value: %s
2086N/AMILD_ERR_LDAP_CONTROL_DECODE_VALUE_55=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP control because the value could not be decoded as an octet \
2086N/A string: %s
2086N/AMILD_ERR_LDAP_CONTROL_DECODE_INVALID_TYPE_56=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP control because the BER type for the second element in the \
2086N/A sequence was invalid (expected 01 or 04, got %x)
2086N/AMILD_ERR_LDAP_CONTROL_DECODE_CONTROLS_NULL_57=Cannot decode the provided \
2086N/A ASN.1 element as a set of LDAP controls because the element was null
2086N/AMILD_ERR_LDAP_CONTROL_DECODE_CONTROLS_SEQUENCE_58=Cannot decode the provided \
2086N/A ASN.1 element as a set of LDAP controls because the element could not be \
2086N/A decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_ABANDON_REQUEST_DECODE_ID_59=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP abandon request protocol op because a problem occurred \
2086N/A while trying to obtain the message ID of the operation to abandon: %s
2086N/AMILD_ERR_LDAP_RESULT_DECODE_SEQUENCE_60=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP result protocol op because a problem occurred while trying \
2086N/A to parse the result sequence: %s
2086N/AMILD_ERR_LDAP_RESULT_DECODE_INVALID_ELEMENT_COUNT_61=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP result protocol op because the result \
2086N/A sequence did not contain a valid number of elements (expected 3 or 4, got %d)
2086N/AMILD_ERR_LDAP_RESULT_DECODE_RESULT_CODE_62=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP result protocol op because the first element in the result \
2086N/A sequence could not be decoded as an integer result code: %s
2086N/AMILD_ERR_LDAP_RESULT_DECODE_MATCHED_DN_63=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP result protocol op because the second element in the \
2086N/A result sequence could not be decoded as the matched DN: %s
2086N/AMILD_ERR_LDAP_RESULT_DECODE_ERROR_MESSAGE_64=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP result protocol op because the third element in the result \
2086N/A sequence could not be decoded as the error message: %s
2086N/AMILD_ERR_LDAP_RESULT_DECODE_REFERRALS_65=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP result protocol op because the fourth element in the \
2086N/A result sequence could not be decoded as a set of referral URLs: %s
2086N/AMILD_ERR_LDAP_BIND_RESULT_DECODE_INVALID_ELEMENT_COUNT_66=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP bind response protocol op because the \
2086N/A result sequence did not contain a valid number of elements (expected 3 to 5, \
2086N/A got %d)
2086N/AMILD_ERR_LDAP_BIND_RESULT_DECODE_SERVER_SASL_CREDENTIALS_67=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP bind response protocol op because the final \
2086N/A element in the result sequence could not be decoded as the server SASL \
2086N/A credentials: %s
2086N/AMILD_ERR_LDAP_BIND_RESULT_DECODE_INVALID_TYPE_68=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP bind response protocol op because the BER type for \
2086N/A the fourth element in the sequence was invalid (expected A3 or 87, got %x)
2086N/AMILD_ERR_LDAP_EXTENDED_RESULT_DECODE_INVALID_ELEMENT_COUNT_69=Cannot decode \
2086N/A the provided ASN.1 element as an LDAP bind response protocol op because the \
2086N/A result sequence did not contain a valid number of elements (expected 3 to 6, \
2086N/A got %d)
2086N/AMILD_ERR_LDAP_EXTENDED_RESULT_DECODE_REFERRALS_70=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP bind response protocol op because the set of \
2086N/A referral URLs could not be decoded: %s
2086N/AMILD_ERR_LDAP_EXTENDED_RESULT_DECODE_OID_71=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP bind response protocol op because the response OID could \
2086N/A not be decoded: %s
2086N/AMILD_ERR_LDAP_EXTENDED_RESULT_DECODE_VALUE_72=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP bind response protocol op because the response value \
2086N/A could not be decoded: %s
2086N/AMILD_ERR_LDAP_EXTENDED_RESULT_DECODE_INVALID_TYPE_73=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP extended response protocol op because one \
2086N/A of the elements it contained had an invalid BER type (expected A3, 8A, or 8B, \
2086N/A got %x)
2086N/AMILD_ERR_LDAP_UNBIND_DECODE_74=Cannot decode the provided ASN.1 element as an \
2086N/A LDAP unbind request protocol op: %s
2086N/AMILD_ERR_LDAP_BIND_REQUEST_DECODE_SEQUENCE_75=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP bind request protocol op because the element could \
2086N/A not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_BIND_REQUEST_DECODE_INVALID_ELEMENT_COUNT_76=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP bind request protocol op because the \
2086N/A request sequence had an invalid number of elements (expected 3, got %d)
2086N/AMILD_ERR_LDAP_BIND_REQUEST_DECODE_VERSION_77=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP bind request protocol op because the protocol version \
2086N/A could not be decoded as an integer: %s
2086N/AMILD_ERR_LDAP_BIND_REQUEST_DECODE_DN_78=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP bind request protocol op because the bind DN could not be \
2086N/A properly decoded: %s
2086N/AMILD_ERR_LDAP_BIND_REQUEST_DECODE_PASSWORD_79=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP bind request protocol op because the password to use \
2086N/A for simple authentication could not be decoded: %s
2086N/AMILD_ERR_LDAP_BIND_REQUEST_DECODE_SASL_INFO_80=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP bind request protocol op because the SASL \
2086N/A authentication information could not be decoded: %s
2086N/AMILD_ERR_LDAP_BIND_REQUEST_DECODE_INVALID_CRED_TYPE_81=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP bind request protocol op because the \
2086N/A authentication info element had an invalid BER type (expected 80 or A3, got \
2086N/A %x)
3876N/AMILD_ERR_LDAP_BIND_REQUEST_DECODE_CREDENTIALS_82=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP bind request protocol op because an unexpected error \
2086N/A occurred while trying to decode the authentication info element: %s
2086N/AMILD_ERR_LDAP_COMPARE_REQUEST_DECODE_SEQUENCE_83=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP compare request protocol op because the element \
2086N/A could not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_COMPARE_REQUEST_DECODE_INVALID_ELEMENT_COUNT_84=Cannot decode \
2086N/A the provided ASN.1 element as an LDAP compare request protocol op because the \
2086N/A request sequence had an invalid number of elements (expected 2, got %d)
2086N/AMILD_ERR_LDAP_COMPARE_REQUEST_DECODE_DN_85=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP compare request protocol op because the target DN could \
2086N/A not be properly decoded: %s
2086N/AMILD_ERR_LDAP_COMPARE_REQUEST_DECODE_AVA_86=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP compare request protocol op because the attribute value \
2086N/A assertion could not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_COMPARE_REQUEST_DECODE_AVA_COUNT_87=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP compare request protocol op because the attribute \
2086N/A value assertion sequence had an invalid number of elements (expected 2, got \
2086N/A %d)
2086N/AMILD_ERR_LDAP_COMPARE_REQUEST_DECODE_TYPE_88=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP compare request protocol op because the attribute type \
2086N/A could not be properly decoded: %s
2086N/AMILD_ERR_LDAP_COMPARE_REQUEST_DECODE_VALUE_89=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP compare request protocol op because the assertion \
2086N/A value could not be properly decoded: %s
2086N/AMILD_ERR_LDAP_DELETE_REQUEST_DECODE_DN_90=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP delete request protocol op because the target DN could not \
2086N/A be properly decoded: %s
2086N/AMILD_ERR_LDAP_EXTENDED_REQUEST_DECODE_SEQUENCE_91=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP extended request protocol op because the element \
2086N/A could not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_EXTENDED_REQUEST_DECODE_INVALID_ELEMENT_COUNT_92=Cannot decode \
2086N/A the provided ASN.1 element as an LDAP extended request protocol op because \
2086N/A the request sequence had an invalid number of elements (expected 1 or 2, got \
2086N/A %d)
2086N/AMILD_ERR_LDAP_EXTENDED_REQUEST_DECODE_OID_93=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP extended request protocol op because the OID could not be \
2086N/A properly decoded: %s
2086N/AMILD_ERR_LDAP_EXTENDED_REQUEST_DECODE_VALUE_94=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP extended request protocol op because the value could \
2086N/A not be properly decoded: %s
2086N/AMILD_ERR_LDAP_MODIFY_DN_REQUEST_DECODE_SEQUENCE_95=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP modify DN request protocol op because the element \
2086N/A could not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_MODIFY_DN_REQUEST_DECODE_INVALID_ELEMENT_COUNT_96=Cannot decode \
2086N/A the provided ASN.1 element as an LDAP modify DN request protocol op because \
2086N/A the request sequence had an invalid number of elements (expected 3 or 4, got \
2086N/A %d)
2086N/AMILD_ERR_LDAP_MODIFY_DN_REQUEST_DECODE_DN_97=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP modify DN request protocol op because the entry DN could \
2086N/A not be properly decoded: %s
2086N/AMILD_ERR_LDAP_MODIFY_DN_REQUEST_DECODE_NEW_RDN_98=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP modify DN request protocol op because the new RDN \
2086N/A could not be properly decoded: %s
2086N/AMILD_ERR_LDAP_MODIFY_DN_REQUEST_DECODE_DELETE_OLD_RDN_99=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP modify DN request protocol op because the \
2086N/A deleteOldRDN flag could not be properly decoded: %s
2086N/AMILD_ERR_LDAP_MODIFY_DN_REQUEST_DECODE_NEW_SUPERIOR_100=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP modify DN request protocol op because the \
2086N/A new superior DN could not be properly decoded: %s
2086N/AMILD_ERR_LDAP_ATTRIBUTE_DECODE_SEQUENCE_101=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP attribute because the element could not be decoded as a \
2086N/A sequence: %s
2086N/AMILD_ERR_LDAP_ATTRIBUTE_DECODE_INVALID_ELEMENT_COUNT_102=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP attribute because the request sequence had \
2086N/A an invalid number of elements (expected 2, got %d)
2086N/AMILD_ERR_LDAP_ATTRIBUTE_DECODE_TYPE_103=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP attribute because the attribute type could not be decoded: \
2086N/A %s
2086N/AMILD_ERR_LDAP_ATTRIBUTE_DECODE_VALUES_104=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP attribute because the set of values could not be decoded: \
2086N/A %s
2086N/AMILD_ERR_LDAP_ADD_REQUEST_DECODE_SEQUENCE_105=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP add request protocol op because the element could \
2086N/A not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_ADD_REQUEST_DECODE_INVALID_ELEMENT_COUNT_106=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP add request protocol op because the request \
2086N/A sequence had an invalid number of elements (expected 2, got %d)
2086N/AMILD_ERR_LDAP_ADD_REQUEST_DECODE_DN_107=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP add request protocol op because the entry DN could not be \
2086N/A decoded: %s
2086N/AMILD_ERR_LDAP_ADD_REQUEST_DECODE_ATTRS_108=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP add request protocol op because the set of attributes \
2086N/A could not be decoded: %s
2086N/AMILD_ERR_LDAP_MODIFICATION_DECODE_SEQUENCE_109=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP modification because the element could not be \
2086N/A decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_MODIFICATION_DECODE_INVALID_ELEMENT_COUNT_110=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP modification because the request sequence \
2086N/A had an invalid number of elements (expected 2, got %d)
2086N/AMILD_ERR_LDAP_MODIFICATION_DECODE_INVALID_MOD_TYPE_111=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP modification because it contained an \
2086N/A invalid modification type (%d)
2086N/AMILD_ERR_LDAP_MODIFICATION_DECODE_MOD_TYPE_112=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP modification because the modification type could not \
2086N/A be decoded: %s
2086N/AMILD_ERR_LDAP_MODIFICATION_DECODE_ATTR_113=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP modification because the attribute could not be decoded: \
2086N/A %s
2086N/AMILD_ERR_LDAP_MODIFY_REQUEST_DECODE_SEQUENCE_114=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP modify request protocol op because the element could \
2086N/A not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_MODIFY_REQUEST_DECODE_INVALID_ELEMENT_COUNT_115=Cannot decode \
2086N/A the provided ASN.1 element as an LDAP modify request protocol op because the \
2086N/A request sequence had an invalid number of elements (expected 2, got %d)
2086N/AMILD_ERR_LDAP_MODIFY_REQUEST_DECODE_DN_116=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP modify request protocol op because the entry DN could not \
2086N/A be decoded: %s
2086N/AMILD_ERR_LDAP_MODIFY_REQUEST_DECODE_MODS_117=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP modify request protocol op because the set of \
2086N/A modifications could not be decoded: %s
2086N/AMILD_ERR_LDAP_SEARCH_ENTRY_DECODE_SEQUENCE_118=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search result entry protocol op because the element \
2086N/A could not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_SEARCH_ENTRY_DECODE_INVALID_ELEMENT_COUNT_119=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP search result entry protocol op because the \
2086N/A request sequence had an invalid number of elements (expected 2, got %d)
2086N/AMILD_ERR_LDAP_SEARCH_ENTRY_DECODE_DN_120=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP search result entry protocol op because the entry DN could \
2086N/A not be decoded: %s
2086N/AMILD_ERR_LDAP_SEARCH_ENTRY_DECODE_ATTRS_121=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP search result entry protocol op because the set of \
2086N/A attributes could not be decoded: %s
2086N/AMILD_ERR_LDAP_SEARCH_REFERENCE_DECODE_SEQUENCE_122=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search result reference protocol op because the \
2086N/A element could not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_SEARCH_REFERENCE_DECODE_URLS_123=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search result reference protocol op because a \
2086N/A problem occurred while trying to decode the sequence elements as referral \
2086N/A URLs: %s
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_SEQUENCE_124=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search request protocol op because the element could \
2086N/A not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_INVALID_ELEMENT_COUNT_125=Cannot decode \
2086N/A the provided ASN.1 element as an LDAP search request protocol op because the \
2086N/A request sequence had an invalid number of elements (expected 8, got %d)
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_BASE_126=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP search request protocol op because the base DN could not \
2086N/A be decoded: %s
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_INVALID_SCOPE_127=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP search request protocol op because the \
2086N/A provided scope value (%d) is invalid
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_SCOPE_128=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search request protocol op because the scope could \
2086N/A not be decoded: %s
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_INVALID_DEREF_129=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP search request protocol op because the \
2086N/A provided alias dereferencing policy value (%d) is invalid
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_DEREF_130=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search request protocol op because the alias \
2086N/A dereferencing policy could not be decoded: %s
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_SIZE_LIMIT_131=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search request protocol op because the size limit \
2086N/A could not be decoded: %s
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_TIME_LIMIT_132=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search request protocol op because the time limit \
2086N/A could not be decoded: %s
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_TYPES_ONLY_133=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search request protocol op because the typesOnly \
2086N/A flag could not be decoded: %s
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_FILTER_134=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search request protocol op because the filter could \
2086N/A not be decoded: %s
2086N/AMILD_ERR_LDAP_SEARCH_REQUEST_DECODE_ATTRIBUTES_135=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search request protocol op because the requested \
2086N/A attribute set could not be decoded: %s
2086N/AMILD_ERR_LDAP_PROTOCOL_OP_DECODE_NULL_136=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP protocol op because the element was null
2086N/AMILD_ERR_LDAP_PROTOCOL_OP_DECODE_INVALID_TYPE_137=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP protocol op because the element had an invalid BER \
2086N/A type (%x) for an LDAP protocol op
2086N/AMILD_ERR_LDAP_FILTER_DECODE_NULL_138=Cannot decode the provided ASN.1 element \
2086N/A as an LDAP search filter because the element was null
2086N/AMILD_ERR_LDAP_FILTER_DECODE_INVALID_TYPE_139=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP search filter because the element had an invalid BER type \
2086N/A (%x) for a search filter
2086N/AMILD_ERR_LDAP_FILTER_DECODE_COMPOUND_SET_140=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP search filter because the compound filter set could not be \
2086N/A decoded: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_COMPOUND_COMPONENTS_141=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP search filter because an unexpected error \
2086N/A occurred while trying to decode one of the compound filter components: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_NOT_ELEMENT_142=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP search filter because the value of the element cannot \
2086N/A itself be decoded as an ASN.1 element for a NOT filter component: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_NOT_COMPONENT_143=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search filter because the NOT component element \
2086N/A could not be decoded as an LDAP filter: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_TV_SEQUENCE_144=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP search filter because the element could not be decoded as \
2086N/A a type-and-value sequence: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_TV_INVALID_ELEMENT_COUNT_145=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP search filter because the type-and-value \
2086N/A sequence had an invalid number of elements (expected 2, got %d)
2086N/AMILD_ERR_LDAP_FILTER_DECODE_TV_TYPE_146=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP search filter because the attribute type could not be \
2086N/A decoded from the type-and-value sequence: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_TV_VALUE_147=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP search filter because the assertion value could not be \
2086N/A decoded from the type-and-value sequence: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_SUBSTRING_SEQUENCE_148=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search filter because the element could not be \
2086N/A decoded as a substring sequence: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_SUBSTRING_INVALID_ELEMENT_COUNT_149=Cannot decode \
2086N/A the provided ASN.1 element as an LDAP search filter because the substring \
2086N/A sequence had an invalid number of elements (expected 2, got %d)
2086N/AMILD_ERR_LDAP_FILTER_DECODE_SUBSTRING_TYPE_150=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search filter because the attribute type could not \
2086N/A be decoded from the substring sequence: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_SUBSTRING_ELEMENTS_151=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search filter because the substring value sequence \
2086N/A could not be decoded: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_SUBSTRING_NO_SUBELEMENTS_152=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP search filter because the substring value \
2086N/A sequence did not contain any elements
2086N/AMILD_ERR_LDAP_FILTER_DECODE_SUBSTRING_INVALID_SUBTYPE_153=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP search filter because the substring value \
2086N/A sequence had an element with an invalid BER type (%x)
2086N/AMILD_ERR_LDAP_FILTER_DECODE_SUBSTRING_VALUES_154=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search filter because a problem occurred while \
2086N/A trying to parse the substring value elements: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_PRESENCE_TYPE_155=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP search filter because the element could not be \
2086N/A decoded as the presence attribute type: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_EXTENSIBLE_SEQUENCE_156=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP search filter because the element could not \
2086N/A be decoded as an extensible matching sequence: %s
2086N/AMILD_ERR_LDAP_FILTER_DECODE_EXTENSIBLE_INVALID_TYPE_157=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP search filter because the extensible \
2086N/A matching sequence had an element with an invalid BER type (%x)
2086N/AMILD_ERR_LDAP_FILTER_DECODE_EXTENSIBLE_ELEMENTS_158=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP search filter because a problem occurred \
2086N/A while trying to parse the extensible match sequence elements: %s
2086N/AMILD_ERR_LDAP_CLIENT_SEND_RESPONSE_NO_RESULT_CODE_159=The server attempted to \
2086N/A send a response to the %s operation (conn=%d, op=%d), but the operation did \
2086N/A not have a result code. This could indicate that the operation did not \
2086N/A complete properly or that it is one that is not allowed to have a response. \
2086N/A Using a generic 'Operations Error' response
2086N/AMILD_ERR_LDAP_CLIENT_SEND_RESPONSE_INVALID_OP_160=The server attempted to \
2086N/A send a response to the %s operation (conn=%d, op=%d), but this type of \
2086N/A operation is not allowed to have responses. Backtrace: %s
2086N/AMILD_ERR_LDAP_CLIENT_SEND_MESSAGE_ENCODE_ASN1_161=The server was unable to \
2086N/A encode the provided LDAP message %s (conn=%d, op=%d) into an ASN.1 element: \
2086N/A %s
2086N/AMILD_ERR_LDAP_CLIENT_SEND_MESSAGE_ENCODE_BYTES_162=The server was unable to \
2086N/A encode the ASN.1 element generated from LDAP message %s (conn=%d, op=%d) into \
2086N/A a byte array: %s
2086N/AMILD_ERR_LDAP_CLIENT_SEND_MESSAGE_IO_PROBLEM_163=The server was unable to \
2086N/A send the LDAP message %s (conn=%d, op=%d) to the client because an I/O \
2086N/A problem was encountered: %s
2086N/AMILD_ERR_LDAP_CLIENT_SEND_MESSAGE_UNEXPECTED_PROBLEM_164=The server was \
2086N/A unable to send the LDAP message %s (conn=%d, op=%d) to the client because an \
2086N/A unexpected problem was encountered: %s
2086N/AINFO_LDAP_CLIENT_GENERIC_NOTICE_OF_DISCONNECTION_165=The Directory Server is \
2086N/A closing the connection to this client
6156N/AMILD_WARN_CLIENT_DISCONNECT_IN_PROGRESS_166=The Directory Server is \
2086N/A currently in the process of closing this client connection
2086N/AMILD_ERR_LDAP_CLIENT_DECODE_ZERO_BYTE_VALUE_167=The client sent a request to \
2086N/A the Directory Server that was an ASN.1 element with a zero-byte value. This \
2086N/A cannot possibly be a valid LDAP message
2086N/AMILD_ERR_LDAP_CLIENT_DECODE_MAX_REQUEST_SIZE_EXCEEDED_168=The client sent a \
2086N/A request to the Directory Server with an ASN.1 element value length of %d \
2086N/A bytes. This exceeds the maximum allowed request size of %d bytes, so \
2086N/A processing cannot continue on this connection
2086N/AMILD_ERR_LDAP_CLIENT_DECODE_INVALID_MULTIBYTE_LENGTH_169=The client sent a \
2086N/A request to the Directory Server with an ASN.1 element using multiple bytes to \
2086N/A express the value length. The request indicated that %d bytes were needed to \
2086N/A express the length, but this exceeds the maximum allowed limit of four bytes
2086N/AMILD_ERR_LDAP_CLIENT_DECODE_ASN1_FAILED_170=The client sent a request to the \
2086N/A Directory Server that could not be properly decoded as an ASN.1 element: %s
2086N/AMILD_ERR_LDAP_CLIENT_DECODE_LDAP_MESSAGE_FAILED_171=The client sent a request \
2086N/A to the Directory Server that could not be properly decoded as an LDAP \
2086N/A message: %s
2086N/ASEVERE_ERR_LDAP_CLIENT_INVALID_DECODE_STATE_172=An internal error has \
2086N/A occurred within the Directory Server to cause it to lose track of where it is \
2086N/A in decoding requests on this client connection. It had an invalid decode \
2086N/A state of %d, and this connection must be terminated
2086N/AMILD_ERR_LDAP_CLIENT_DECODE_INVALID_REQUEST_TYPE_173=The client sent an LDAP \
2086N/A message to the Directory Server that was not a valid message for a client \
2086N/A request: %s
2086N/AMILD_ERR_LDAP_CLIENT_CANNOT_CONVERT_MESSAGE_TO_OPERATION_174=The Directory \
2086N/A Server was unable to convert the LDAP message read from the client (%s) to an \
2086N/A internal operation for processing: %s
2086N/AMILD_ERR_LDAP_ABANDON_INVALID_MESSAGE_TYPE_175=Cannot convert the provided \
2086N/A LDAP message (%s) to an abandon operation: %s
2086N/AMILD_ERR_LDAP_UNBIND_INVALID_MESSAGE_TYPE_176=Cannot convert the provided \
2086N/A LDAP message (%s) to an unbind operation: %s
2086N/AFATAL_ERR_LDAP_CONNHANDLER_OPEN_SELECTOR_FAILED_177=The LDAP connection \
2086N/A handler defined in configuration entry %s was unable to open a selector to \
2086N/A allow it to multiplex the associated accept sockets: %s. This connection \
2086N/A handler will be disabled
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CREATE_CHANNEL_FAILED_178=The LDAP connection \
2086N/A handler defined in configuration entry %s was unable to create a server \
2086N/A socket channel to accept connections on %s:%d: %s. The Directory Server \
2086N/A will not listen for new connections on that address
2086N/AFATAL_ERR_LDAP_CONNHANDLER_NO_ACCEPTORS_179=The LDAP connection handler \
2086N/A defined in configuration entry %s was unable to create any of the socket \
2086N/A channels on any of the configured addresses. This connection handler will be \
2086N/A disabled
6134N/AMILD_ERR_CONNHANDLER_DENIED_CLIENT_180=The connection attempt from \
2086N/A client %s to %s has been rejected because the client was included in one of \
2086N/A the denied address ranges
6134N/AMILD_ERR_CONNHANDLER_DISALLOWED_CLIENT_181=The connection attempt from \
2086N/A client %s to %s has been rejected because the client was not included in one \
2086N/A of the allowed address ranges
6134N/AINFO_CONNHANDLER_UNABLE_TO_REGISTER_CLIENT_182=An internal error \
2086N/A prevented the Directory Server from properly registering the client \
2086N/A connection from %s to %s with an appropriate request handler: %s
6264N/AMILD_ERR_CONNHANDLER_CANNOT_ACCEPT_CONNECTION_183=The %s defined in \
6264N/A configuration entry %s was unable to accept a new client connection: %s
6264N/AFATAL_ERR_CONNHANDLER_CONSECUTIVE_ACCEPT_FAILURES_184=The %s defined in \
6264N/A configuration entry %s has experienced consecutive failures while trying to \
6264N/A accept client connections: %s. This connection handler will be disabled
2086N/AFATAL_ERR_LDAP_CONNHANDLER_UNCAUGHT_ERROR_185=The LDAP connection handler \
2086N/A defined in configuration entry %s caught an unexpected error while trying to \
2086N/A listen for new connections: %s. This connection handler will be disabled
2086N/AFATAL_ERR_LDAP_REQHANDLER_OPEN_SELECTOR_FAILED_186=%s was unable to open a \
2086N/A selector to multiplex reads from clients: %s. This request handler cannot \
2086N/A continue processing
2086N/AFATAL_ERR_LDAP_REQHANDLER_CANNOT_REGISTER_187=%s was unable to register this \
2086N/A client connection with the selector: %s
2086N/AFATAL_ERR_LDAP_REQHANDLER_REJECT_DUE_TO_SHUTDOWN_188=This connection could \
2086N/A not be registered with a request handler because the Directory Server is \
2086N/A shutting down
2086N/AFATAL_ERR_LDAP_REQHANDLER_REJECT_DUE_TO_QUEUE_FULL_189=This connection could \
2086N/A not be registered with a request handler because the pending queue associated \
2086N/A with %s is too full
2086N/AFATAL_ERR_LDAP_REQHANDLER_DEREGISTER_DUE_TO_SHUTDOWN_190=This client \
2086N/A connection is being deregistered from the associated request handler because \
3642N/A the Directory Server is shutting down
2086N/AMILD_ERR_ASN1_READER_MAX_SIZE_EXCEEDED_191=Cannot decode the data read as an \
2086N/A ASN.1 element because the decoded element length of %d bytes was larger than \
2086N/A the maximum allowed element length of %d bytes. The underlying input stream \
2901N/A has been closed and this reader can no longer be used
2086N/AMILD_ERR_LDAP_FILTER_STRING_NULL_192=Cannot decode the provided string as an \
2086N/A LDAP search filter because the string was null
2086N/AMILD_ERR_LDAP_FILTER_UNCAUGHT_EXCEPTION_193=Cannot decode the provided string \
2086N/A %s as an LDAP search filter because an unexpected exception was thrown during \
2086N/A processing: %s
2086N/AMILD_ERR_LDAP_FILTER_MISMATCHED_PARENTHESES_194=The provided search filter \
2086N/A "%s" had mismatched parentheses around the portion between positions %d and \
2086N/A %d
2086N/AMILD_ERR_LDAP_FILTER_NO_EQUAL_SIGN_195=The provided search filter "%s" was \
2086N/A missing an equal sign in the suspected simple filter component between \
2086N/A positions %d and %d
2086N/AMILD_ERR_LDAP_FILTER_INVALID_ESCAPED_BYTE_196=The provided search filter "%s" \
2086N/A had an invalid escaped byte value at position %d. A backslash in a value \
2086N/A must be followed by two hexadecimal characters that define the byte that has \
2086N/A been encoded
2086N/AMILD_ERR_LDAP_FILTER_COMPOUND_MISSING_PARENTHESES_197=The provided search \
2086N/A filter "%s" could not be decoded because the compound filter between \
2086N/A positions %d and %d did not start with an open parenthesis and end with a \
2901N/A close parenthesis (they might be parentheses for different filter components)
2086N/AMILD_ERR_LDAP_FILTER_NO_CORRESPONDING_OPEN_PARENTHESIS_198=The provided \
2086N/A search filter "%s" could not be decoded because the closing parenthesis at \
2086N/A position %d did not have a corresponding open parenthesis
2086N/AMILD_ERR_LDAP_FILTER_NO_CORRESPONDING_CLOSE_PARENTHESIS_199=The provided \
3435N/A search filter "%s" could not be decoded because the opening parenthesis at \
2086N/A position %d did not have a corresponding close parenthesis
2086N/AMILD_ERR_LDAP_FILTER_SUBSTRING_NO_ASTERISKS_200=The provided search filter \
2086N/A "%s" could not be decoded because the assumed substring filter value between \
2086N/A positions %d and %d did not have any asterisk wildcard characters
2086N/AMILD_ERR_LDAP_FILTER_EXTENSIBLE_MATCH_NO_COLON_201=The provided search filter \
2086N/A "%s" could not be decoded because the extensible match component starting at \
2086N/A position %d did not have a colon to denote the end of the attribute type name
2086N/AMILD_ERR_LDAP_DISCONNECT_DUE_TO_INVALID_REQUEST_TYPE_202=Terminating this \
2086N/A connection because the client sent an invalid message of type %s (LDAP \
2086N/A message ID %d) that is not allowed for request messages
2086N/ASEVERE_ERR_LDAP_DISCONNECT_DUE_TO_PROCESSING_FAILURE_203=An unexpected \
2086N/A failure occurred while trying to process a request of type %s (LDAP message \
2086N/A ID %d): %s. The client connection will be terminated
2086N/AMILD_ERR_LDAP_INVALID_BIND_AUTH_TYPE_204=The bind request message (LDAP \
2086N/A message ID %d) included an invalid authentication type of %s. This is a \
2086N/A protocol error, and this connection will be terminated as per RFC 2251 \
2086N/A section 4.2.3
2086N/AMILD_ERR_LDAP_DISCONNECT_DUE_TO_BIND_PROTOCOL_ERROR_205=This client \
2086N/A connection is being terminated because a protocol error occurred while trying \
2086N/A to process a bind request. The LDAP message ID was %d and the error message \
2086N/A for the bind response was %s
2086N/AMILD_ERR_LDAPV2_SKIPPING_EXTENDED_RESPONSE_206=An extended response message \
2086N/A would have been sent to an LDAPv2 client (connection ID=%d, operation ID=%d): \
2086N/A %s. LDAPv2 does not allow extended operations, so this response will not be \
2086N/A sent
2086N/AMILD_ERR_LDAPV2_SKIPPING_SEARCH_REFERENCE_207=A search performed by an LDAPv2 \
2086N/A client (connection ID=%d, operation ID=%d) would have included a search \
2086N/A result reference %s. Referrals are not allowed for LDAPv2 clients, so this \
2086N/A search reference will not be sent
2086N/AMILD_ERR_LDAPV2_REFERRAL_RESULT_CHANGED_208=The original result code for this \
2086N/A message was 10 but this result is not allowed for LDAPv2 clients
2086N/AMILD_ERR_LDAPV2_REFERRALS_OMITTED_209=The response included one or more \
2086N/A referrals, which are not allowed for LDAPv2 clients. The referrals included \
2086N/A were: %s
2086N/AMILD_ERR_LDAPV2_CLIENTS_NOT_ALLOWED_210=The Directory Server has been \
2086N/A configured to deny access to LDAPv2 clients. This connection will be closed
2086N/AMILD_ERR_LDAPV2_EXTENDED_REQUEST_NOT_ALLOWED_211=The client with connection \
2086N/A ID %d authenticated to the Directory Server using LDAPv2, but attempted to \
2086N/A send an extended operation request (LDAP message ID %d), which is not allowed \
2086N/A for LDAPv2 clients. The connection will be terminated
2086N/AMILD_ERR_LDAP_STATS_INVALID_MONITOR_INITIALIZATION_212=An attempt was made to \
2086N/A initialize the LDAP statistics monitor provider as defined in configuration \
2086N/A entry %s. This monitor provider should only be dynamically created within \
2086N/A the Directory Server itself and not from within the configuration
2086N/ASEVERE_ERR_LDAP_REQHANDLER_UNEXPECTED_SELECT_EXCEPTION_213=The LDAP request \
2086N/A handler thread "%s" encountered an unexpected error that would have caused \
2086N/A the thread to die: %s. The error has been caught and the request handler \
2086N/A should continue operating as normal
6134N/AMILD_ERR_CONNHANDLER_REJECTED_BY_SERVER_214=The attempt to register this \
2901N/A connection with the Directory Server was rejected. This might indicate that \
2086N/A the server already has the maximum allowed number of concurrent connections \
2086N/A established, or that it is in a restricted access mode
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_LISTEN_ADDRESS_215=Address or \
2901N/A set of addresses on which this connection handler can accept client \
2086N/A connections. If no value is specified, then the server will accept \
2086N/A connections on all active addresses. Changes to this configuration attribute \
2086N/A will not take effect until the connection handler is disabled and re-enabled, \
2086N/A or until the Directory Server is restarted
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_LISTEN_PORT_216=TCP port on \
2901N/A which this connection handler can accept client connections. Changes to this \
2086N/A configuration attribute will not take effect until the connection handler is \
2086N/A disabled and re-enabled, or until the Directory Server is restarted
2086N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_ALLOWED_CLIENTS_217=Specifies a set of \
2901N/A address masks that can be used to determine the addresses of the clients that \
2086N/A are allowed to establish connections to this connection handler. If no \
2086N/A values are specified, then all clients with addresses that do not match an \
2086N/A address on the deny list will be allowed. Changes to this configuration \
2086N/A attribute will take effect immediately but will not interfere with \
2901N/A connections that might already be established
2086N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_DENIED_CLIENTS_218=Specifies a set of \
2901N/A address masks that can be used to determine the set of addresses of the \
2086N/A clients that are not allowed to establish connections to this connection \
2086N/A handler. If both allowed and denied client masks are defined and a client \
2086N/A connection matches one or more masks in both lists, then the connection will \
2086N/A be denied. If only a denied list is specified, then any client not matching \
2086N/A a mask in that list will be allowed. Changes to this configuration attribute \
2901N/A will take effect immediately but will not interfere with connections that might \
2086N/A already be established
2086N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_ALLOW_LDAPV2_219=Indicates whether to allow \
2086N/A communication with LDAPv2 clients. LDAPv2 is considered an obsolete \
2086N/A protocol, and clients using it will not be allowed to take advantage of all \
2086N/A features offered by the server. Changes to this configuration attribute will \
2901N/A take effect immediately, but will not interfere with connections that might \
2086N/A already be established
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_NUM_REQUEST_HANDLERS_220=Number of threads \
2901N/A that should be used to read requests from clients and place \
2086N/A them in the work queue for processing. On large systems accepting many \
2901N/A concurrent requests, it might be more efficient to have multiple threads \
2086N/A reading requests from clients. Changes to this configuration attribute will \
2086N/A not take effect until the connection handler is disabled and re-enabled, or \
2086N/A until the Directory Server is restarted
2086N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_SEND_REJECTION_NOTICE_221=Indicates whether \
2086N/A to send an LDAPv3 notice of disconnection message to client connections that \
2086N/A are rejected before closing the connection. Changes to this configuration \
2086N/A attribute will take effect immediately
2086N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_USE_TCP_KEEPALIVE_222=Indicates whether to \
2086N/A use the TCP KeepAlive feature for client connections established through this \
2901N/A connection handler. This is recommended because it might help the server \
2901N/A detect client connections that are no longer valid, and might help prevent \
2086N/A intermediate network devices from closing connections due to a lack of \
2086N/A communication. Changes to this configuration attribute will take effect \
2086N/A immediately but will only be applied to connections established after the \
2086N/A change
2086N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_USE_TCP_NODELAY_223=Indicates whether to \
2086N/A use the TCP NoDelay feature for client connections established through this \
2086N/A connection handler. This is recommended because it will generally allow \
2086N/A faster responses to clients, although directories that frequently process \
2901N/A searches that match multiple entries might be able to achieve higher throughput \
2086N/A if it is disabled. Changes to this configuration attribute will take effect \
2086N/A immediately but will only be applied to connections established after the \
2086N/A change
2086N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_ALLOW_REUSE_ADDRESS_224=Indicates whether \
2086N/A to use the SO_REUSEADDR socket option for the socket accepting connections \
2086N/A for this connection handler. It should generally be enabled unless you have \
2086N/A been instructed to disable it by support engineers. Changes to this \
2086N/A configuration attribute will not take effect until the connection handler is \
2086N/A disabled and re-enabled, or until the Directory Server is restarted
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_MAX_REQUEST_SIZE_225=Maximum \
2086N/A size in bytes that will be allowed when reading requests from clients. This \
2086N/A can be used to prevent denial of service attacks from clients that send \
2086N/A extremely large requests. A value of zero indicates that no limit should be \
2086N/A imposed. Changes to this configuration attribute will take effect \
2086N/A immediately
2086N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_USE_SSL_226=Indicates whether this \
2086N/A connection handler should use SSL when accepting connections from clients. \
2086N/A Changes to this configuration attribute will not take effect until the \
2086N/A connection handler is disabled and re-enabled, or until the Directory Server \
2086N/A is restarted
2086N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_ALLOW_STARTTLS_227=Indicates whether this \
2086N/A connection handler should allow clients to use the StartTLS extended \
2086N/A operation to initiate secure communication over a non-SSL LDAP connection. \
2901N/A This can not be used if SSL is enabled for the connection handler. Changes \
2086N/A to this configuration attribute will take effect immediately for LDAP clients
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_SSL_CLIENT_AUTH_POLICY_228=Policy that \
2901N/A should be used regarding requesting or requiring the client to \
2086N/A present its own certificate when establishing an SSL-based connection or \
2086N/A using StartTLS to initiate a secure channel in an established connection. \
2086N/A Changes to this configuration attribute will not take effect until the \
2086N/A connection handler is disabled and re-enabled, or until the Directory Server \
2086N/A is restarted
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_SSL_CERT_NICKNAME_229=Nickname of the \
2901N/A certificate that the connection handler should use when \
2086N/A accepting SSL-based connections or performing StartTLS negotiation. Changes \
2086N/A to this configuration attribute will not take effect until the connection \
2086N/A handler is disabled and re-enabled, or until the Directory Server is \
2086N/A restarted
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_UNKNOWN_LISTEN_ADDRESS_230=The specified listen \
2086N/A address "%s" in configuration entry "%s" could not be resolved: %s. Please \
2086N/A make sure that name resolution is properly configured on this system
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_LISTEN_ADDRESS_231=An unexpected \
2086N/A error occurred while processing the ds-cfg-listen-address attribute in \
2086N/A configuration entry %s, which is used to specify the address or set of \
2086N/A addresses on which to listen for client connections: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_NO_LISTEN_PORT_232=No listen port was defined \
2086N/A using configuration ds-cfg-listen-port in configuration entry %s. This is a \
2086N/A required attribute
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_LISTEN_PORT_233=An unexpected \
2086N/A error occurred while processing the ds-cfg-listen-port attribute in \
2086N/A configuration entry %s, which is used to specify the port on which to listen \
2086N/A for client connections: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_ALLOWED_CLIENTS_234=An \
2086N/A unexpected error occurred while processing the ds-cfg-allowed-client \
2086N/A attribute in configuration entry %s, which is used to specify the address \
2086N/A mask(s) of the clients that are allowed to establish connections to this \
2086N/A connection handler: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_DENIED_CLIENTS_235=An unexpected \
2086N/A error occurred while processing the ds-cfg-denied-client attribute in \
2086N/A configuration entry %s, which is used to specify the address mask(s) of the \
2086N/A clients that are not allowed to establish connections to this connection \
2086N/A handler: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_ALLOW_LDAPV2_236=An unexpected \
2624N/A error occurred while processing the ds-cfg-allow-ldap-v2 attribute in \
2086N/A configuration entry %s, which is used to indicate whether LDAPv2 clients will \
2086N/A be allowed to access this connection handler: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_NUM_REQUEST_HANDLERS_237=An \
2086N/A unexpected error occurred while processing the ds-cfg-num-request-handlers \
2086N/A attribute in configuration entry %s, which is used to specify the number of \
2086N/A request handlers to use to read requests from clients: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_SEND_REJECTION_NOTICE_238=An \
2086N/A unexpected error occurred while processing the ds-cfg-send-rejection-notice \
2086N/A attribute in configuration entry %s, which is used to indicate whether to \
2086N/A send a notice of disconnection message to rejected client connections: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_USE_TCP_KEEPALIVE_239=An \
2624N/A unexpected error occurred while processing the ds-cfg-use-tcp-keep-alive \
2086N/A attribute in configuration entry %s, which is used to periodically send TCP \
2086N/A Keep-Alive messages over idle connections: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_USE_TCP_NODELAY_240=An \
2624N/A unexpected error occurred while processing the ds-cfg-use-tcp-no-delay \
2086N/A attribute in configuration entry %s, which is used to determine whether to \
2086N/A immediately flush responses to clients: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_ALLOW_REUSE_ADDRESS_241=An \
2086N/A unexpected error occurred while processing the ds-cfg-allow-tcp-reuse-address \
2086N/A attribute in configuration entry %s, which is used to determine whether to \
2086N/A set the SO_REUSEADDR option on the listen socket: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_MAX_REQUEST_SIZE_242=An \
2086N/A unexpected error occurred while processing the ds-cfg-max-request-size \
2086N/A attribute in configuration entry %s, which is used to determine the maximum \
2901N/A size in bytes that can be used for a client request: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_USE_SSL_243=An unexpected error \
2086N/A occurred while processing the ds-cfg-use-ssl attribute in configuration entry \
2086N/A %s, which is used to indicate whether to use SSL when accepting client \
2086N/A connections: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_HAVE_SSL_AND_STARTTLS_244=The LDAP \
2086N/A connection handler defined in configuration entry %s is configured to \
2086N/A communicate over SSL and also to allow clients to use the StartTLS extended \
2901N/A operation. These options can not be used at the same time, so clients will \
2086N/A not be allowed to use the StartTLS operation
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_ALLOW_STARTTLS_245=An unexpected \
2086N/A error occurred while processing the ds-cfg-allow-start-tls attribute in \
2901N/A configuration entry %s, which is used to indicate whether clients can use the \
2086N/A StartTLS extended operation: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_INVALID_SSL_CLIENT_AUTH_POLICY_246=The SSL client \
2086N/A authentication policy "%s" specified in attribute \
2086N/A ds-cfg-ssl-client-auth-policy of configuration entry %s is invalid. The \
2086N/A value must be one of "disabled", "optional", or "required"
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_SSL_CLIENT_AUTH_POLICY_247=An \
2086N/A unexpected error occurred while processing the ds-cfg-ssl-client-auth-policy \
2086N/A attribute in configuration entry %s, which is used to specify the policy that \
2086N/A should be used for requesting/requiring SSL client authentication: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_SSL_CERT_NICKNAME_248=An \
2086N/A unexpected error occurred while processing the ds-cfg-ssl-cert-nickname \
2086N/A attribute in configuration entry %s, which is used to specify the nickname of \
2458N/A the certificate to use for accepting SSL/TLS connections: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_INVALID_ADDRESS_MASK_249=The string %s defined in \
2086N/A attribute %s of configuration entry %s could not be decoded as a valid \
2086N/A address mask: %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_ALLOWED_CLIENTS_250=A new set of allowed client \
2086N/A address masks has been applied for configuration entry %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_DENIED_CLIENTS_251=A new set of denied client \
2086N/A address masks has been applied for configuration entry %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_ALLOW_LDAPV2_252=The value of the \
2624N/A ds-cfg-allow-ldap-v2 attribute has been updated to %s in configuration entry \
2086N/A %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_SEND_REJECTION_NOTICE_253=The value of the \
2086N/A ds-cfg-send-rejection-notice attribute has been updated to %s in \
2086N/A configuration entry %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_USE_KEEPALIVE_254=The value of the \
2624N/A ds-cfg-use-tcp-keep-alive attribute has been updated to %s in configuration \
2086N/A entry %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_USE_TCP_NODELAY_255=The value of the \
2624N/A ds-cfg-use-tcp-no-delay attribute has been updated to %s in configuration \
2086N/A entry %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_MAX_REQUEST_SIZE_256=The value of the \
2086N/A ds-cfg-max-request-size attribute has been updated to %s in configuration \
2086N/A entry %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_ALLOW_STARTTLS_257=The value of the \
2086N/A ds-cfg-allow-start-tls attribute has been updated to %s in configuration \
2086N/A entry %s
2086N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_KEEP_STATS_258=Indicates whether the \
2086N/A connection handler should keep statistics regarding LDAP client \
2901N/A communication. Maintaining this information can cause a slight decrease in \
2086N/A performance, but can be useful for understanding client usage patterns. \
2086N/A Changes to this configuration attribute will take effect immediately, but \
2086N/A will only apply for new connections and will have the side effect of clearing \
2901N/A any existing statistical data that might have been collected
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_KEEP_STATS_259=An unexpected \
2086N/A error occurred while processing the ds-cfg-keep-stats attribute in \
2086N/A configuration entry %s, which is used to indicate whether LDAP usage \
2086N/A statistics should be enabled for this connection handler: %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_KEEP_STATS_260=The value of the ds-cfg-keep-stats \
2086N/A attribute has been updated to %s in configuration entry %s
2086N/AMILD_ERR_ASN1_LONG_SET_VALUE_INVALID_LENGTH_261=Cannot decode the provided \
2086N/A byte array as the value of an ASN.1 long element because the array did not \
2086N/A have a length between 1 and 8 bytes (provided length was %d)
2086N/AMILD_ERR_ASN1_LONG_DECODE_ELEMENT_INVALID_LENGTH_262=Cannot decode the \
2086N/A provided ASN.1 element as a long element because the length of the element \
2086N/A value was not between one and eight bytes (actual length was %d)
2086N/AMILD_ERR_ASN1_LONG_DECODE_ARRAY_INVALID_LENGTH_263=Cannot decode the provided \
2086N/A byte array as an ASN.1 long element because the decoded value length was not \
2086N/A between 1 and 8 bytes (decoded length was %d)
2086N/ASEVERE_ERR_INTERNAL_CANNOT_DECODE_DN_264=An unexpected error occurred while \
2086N/A trying to decode the DN %s used for internal operations as a root user: %s
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_SSL_ENABLED_PROTOCOLS_265=Names of the \
2901N/A SSL protocols that will be allowed for use in SSL or StartTLS \
3876N/A communication. Changes to this configuration attribute will take effect \
3876N/A immediately but will only impact new SSL/TLS-based sessions created after \
3876N/A the change
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_SSL_PROTOCOLS_266=An unexpected \
2624N/A error occurred while processing the ds-cfg-ssl-protocol attribute in \
2086N/A configuration entry %s, which is used to specify the names of the SSL \
2086N/A protocols to allow for SSL/TLS sessions: %s
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_SSL_ENABLED_CIPHERS_267=Names \
2086N/A of the SSL cipher suites that will be allowed for use in SSL or StartTLS \
2086N/A communication. Changes to this configuration attribute will take immediately \
2086N/A but will only impact new SSL/TLS-based sessions created after the change
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_SSL_CIPHERS_268=An unexpected \
2624N/A error occurred while processing the ds-cfg-ssl-protocol attribute in \
2086N/A configuration entry %s, which is used to specify the names of the SSL cipher \
2086N/A suites to allow for SSL/TLS sessions: %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_SSL_PROTOCOLS_269=The value of the \
2624N/A ds-cfg-ssl-protocol attribute has been updated to %s in configuration entry \
2086N/A %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_SSL_CIPHERS_270=The value of the \
2624N/A ds-cfg-ssl-cipher-suite attribute has been updated to %s in configuration \
2086N/A entry %s
2086N/AMILD_ERR_LDAP_TLS_EXISTING_SECURITY_PROVIDER_271=The TLS connection security \
2086N/A provider cannot be enabled on this client connection because it is already \
2901N/A using the %s provider. StartTLS can only be used on clear-text connections
2086N/AMILD_ERR_LDAP_TLS_STARTTLS_NOT_ALLOWED_272=StartTLS cannot be enabled on this \
2086N/A LDAP client connection because the corresponding LDAP connection handler is \
2901N/A configured to reject StartTLS requests. The use of StartTLS can be enabled \
2086N/A using the ds-cfg-allow-start-tls configuration attribute
2086N/AMILD_ERR_LDAP_TLS_CANNOT_CREATE_TLS_PROVIDER_273=An error occurred while \
2086N/A attempting to create a TLS connection security provider for this client \
2086N/A connection for use with StartTLS: %s
2086N/AMILD_ERR_LDAP_TLS_NO_PROVIDER_274=StartTLS is not available on this client \
2086N/A connection because the connection does not have access to a TLS connection \
2086N/A security provider
2086N/AMILD_ERR_LDAP_TLS_CLOSURE_NOT_ALLOWED_275=The LDAP connection handler does \
2086N/A not allow clients to close a StartTLS session on a client connection while \
2086N/A leaving the underlying TCP connection active. The TCP connection will be \
2086N/A closed
6134N/ANOTICE_CONNHANDLER_STARTED_LISTENING_276=Started listening for new \
2086N/A connections on %s
6134N/ANOTICE_CONNHANDLER_STOPPED_LISTENING_277=Stopped listening for new \
2086N/A connections on %s
2086N/AMILD_ERR_LDAP_PAGED_RESULTS_DECODE_NULL_278=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP paged results control value because the element is null
2086N/AMILD_ERR_LDAP_PAGED_RESULTS_DECODE_SEQUENCE_279=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP paged results control value because the element \
2086N/A could not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_PAGED_RESULTS_DECODE_INVALID_ELEMENT_COUNT_280=Cannot decode \
2086N/A the provided ASN.1 element as an LDAP paged results control value because the \
2086N/A request sequence has an invalid number of elements (expected 2, got %d)
2086N/AMILD_ERR_LDAP_PAGED_RESULTS_DECODE_SIZE_281=Cannot decode the provided ASN.1 \
2086N/A element as an LDAP paged results control value because the size element could \
2086N/A not be properly decoded: %s
2086N/AMILD_ERR_LDAP_PAGED_RESULTS_DECODE_COOKIE_282=Cannot decode the provided \
2086N/A ASN.1 element as an LDAP paged results control value because the cookie could \
2086N/A not be properly decoded: %s
2086N/AMILD_ERR_LDAPASSERT_NO_CONTROL_VALUE_283=Cannot decode the provided LDAP \
2086N/A assertion control because the control does not have a value
2086N/AMILD_ERR_LDAPASSERT_INVALID_CONTROL_VALUE_284=Cannot decode the provided LDAP \
2086N/A assertion control because the control value cannot be decoded as an ASN.1 \
2086N/A element: %s
2086N/AMILD_ERR_PREREADREQ_NO_CONTROL_VALUE_285=Cannot decode the provided LDAP \
2086N/A pre-read request control because the control does not have a value
2086N/AMILD_ERR_PREREADREQ_CANNOT_DECODE_VALUE_286=Cannot decode the provided LDAP \
2086N/A pre-read request control because an error occurred while trying to decode the \
2086N/A control value: %s
2086N/AMILD_ERR_POSTREADREQ_NO_CONTROL_VALUE_287=Cannot decode the provided LDAP \
2086N/A post-read request control because the control does not have a value
2086N/AMILD_ERR_POSTREADREQ_CANNOT_DECODE_VALUE_288=Cannot decode the provided LDAP \
2086N/A post-read request control because an error occurred while trying to decode \
2086N/A the control value: %s
2086N/AMILD_ERR_PREREADRESP_NO_CONTROL_VALUE_289=Cannot decode the provided LDAP \
2086N/A pre-read response control because the control does not have a value
2086N/AMILD_ERR_PREREADRESP_CANNOT_DECODE_VALUE_290=Cannot decode the provided LDAP \
2086N/A pre-read response control because an error occurred while trying to decode \
2086N/A the control value: %s
2086N/AMILD_ERR_POSTREADRESP_NO_CONTROL_VALUE_291=Cannot decode the provided LDAP \
2086N/A post-read response control because the control does not have a value
2086N/AMILD_ERR_POSTREADRESP_CANNOT_DECODE_VALUE_292=Cannot decode the provided LDAP \
2086N/A post-read response control because an error occurred while trying to decode \
2086N/A the control value: %s
2086N/AMILD_ERR_PROXYAUTH1_NO_CONTROL_VALUE_293=Cannot decode the provided proxied \
2086N/A authorization V1 control because it does not have a value
2086N/AMILD_ERR_PROXYAUTH1_INVALID_ELEMENT_COUNT_294=Cannot decode the provided \
2086N/A proxied authorization V1 control because the ASN.1 sequence in the control \
2086N/A value has an invalid number of elements (expected 1, got %d)
2086N/AMILD_ERR_PROXYAUTH1_CANNOT_DECODE_VALUE_295=Cannot decode the provided \
2086N/A proxied authorization V1 control because an error occurred while attempting \
2086N/A to decode the control value: %s
2086N/AMILD_ERR_PROXYAUTH1_NO_SUCH_USER_296=User %s specified in the proxied \
2086N/A authorization V1 control does not exist in the Directory Server
2086N/AMILD_ERR_PROXYAUTH2_NO_CONTROL_VALUE_297=Cannot decode the provided proxied \
2086N/A authorization V2 control because it does not have a value
2086N/AMILD_ERR_PROXYAUTH2_CANNOT_DECODE_VALUE_298=Cannot decode the provided \
2086N/A proxied authorization V2 control because an error occurred while attempting \
2086N/A to decode the control value: %s
2086N/AMILD_ERR_PROXYAUTH2_NO_IDENTITY_MAPPER_299=Unable to process proxied \
2086N/A authorization V2 control because it contains an authorization ID based on a \
2086N/A username and no proxied authorization identity mapper is configured in the \
2086N/A Directory Server
2086N/AMILD_ERR_PROXYAUTH2_INVALID_AUTHZID_300=The authorization ID "%s" contained \
2086N/A in the proxied authorization V2 control is invalid because it does not start \
2086N/A with "dn:" to indicate a user DN or "u:" to indicate a username
2086N/AMILD_ERR_PROXYAUTH2_NO_SUCH_USER_301=User %s specified in the proxied \
2086N/A authorization V2 control does not exist in the Directory Server
2086N/AMILD_ERR_PSEARCH_CHANGETYPES_INVALID_TYPE_302=The provided integer value %d \
2086N/A does not correspond to any persistent search change type
2086N/AMILD_ERR_PSEARCH_CHANGETYPES_NO_TYPES_303=The provided integer value \
2086N/A indicated that there were no persistent search change types, which is not \
2086N/A allowed
2086N/AMILD_ERR_PSEARCH_CHANGETYPES_INVALID_TYPES_304=The provided integer value %d \
2086N/A was outside the range of acceptable values for an encoded change type set
2086N/AMILD_ERR_PSEARCH_NO_CONTROL_VALUE_305=Cannot decode the provided persistent \
2086N/A search control because it does not have a value
2086N/AMILD_ERR_PSEARCH_INVALID_ELEMENT_COUNT_306=Cannot decode the provided \
2086N/A persistent search control because the value sequence has an invalid number of \
2086N/A elements (expected 3, got %d)
2086N/AMILD_ERR_PSEARCH_CANNOT_DECODE_VALUE_307=Cannot decode the provided \
2086N/A persistent search control because an error occurred while attempting to \
2086N/A decode the control value: %s
2086N/AMILD_ERR_ECN_NO_CONTROL_VALUE_308=Cannot decode the provided entry change \
2086N/A notification control because it does not have a value
2086N/AMILD_ERR_ECN_INVALID_ELEMENT_COUNT_309=Cannot decode the provided entry \
2086N/A change notification control because the value sequence has an invalid number \
2086N/A of elements (expected between 1 and 3, got %d)
2086N/AMILD_ERR_ECN_ILLEGAL_PREVIOUS_DN_310=Cannot decode the provided entry change \
2086N/A notification control because it contains a previous DN element but had a \
2901N/A change type of %s. The previous DN element can only be provided with the \
2086N/A modify DN change type
2086N/AMILD_ERR_ECN_INVALID_ELEMENT_TYPE_311=Cannot decode the provided entry change \
2086N/A notification control because the second element in the value sequence has an \
2086N/A invalid type of %s that is not appropriate for either a previous DN or a \
2086N/A change number
2086N/AMILD_ERR_ECN_CANNOT_DECODE_VALUE_312=Cannot decode the provided entry change \
2086N/A notification control because an error occurred while attempting to decode the \
2086N/A control value: %s
2086N/AMILD_ERR_AUTHZIDRESP_NO_CONTROL_VALUE_313=Cannot decode the provided \
2086N/A authorization identity response control because it does not have a value
2086N/AMILD_ERR_LDAP_INTERMEDIATE_RESPONSE_DECODE_SEQUENCE_314=Cannot decode the \
2086N/A provided ASN.1 element as an LDAP intermediate response protocol op because \
2086N/A the element could not be decoded as a sequence: %s
2086N/AMILD_ERR_LDAP_INTERMEDIATE_RESPONSE_DECODE_INVALID_ELEMENT_COUNT_315=Cannot \
2086N/A decode the provided ASN.1 element as an LDAP intermediate response protocol \
2086N/A op because the request sequence had an invalid number of elements (expected \
3876N/A 0, 1, or 2, got %d)
2086N/AMILD_ERR_LDAP_INTERMEDIATE_RESPONSE_CANNOT_DECODE_OID_316=An error occurred \
2086N/A while attempting to decode the intermediate response OID: %s
2086N/AMILD_ERR_LDAP_INTERMEDIATE_RESPONSE_CANNOT_DECODE_VALUE_317=An error occurred \
2086N/A while attempting to decode the intermediate response value: %s
2086N/AMILD_ERR_LDAP_INTERMEDIATE_RESPONSE_INVALID_ELEMENT_TYPE_318=The intermediate \
2086N/A response sequence element contained an invalid BER type %s that was not \
2086N/A appropriate for either the OID or the value
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_BACKLOG_319=Accept queue \
2086N/A size, which controls the number of new connection attempts that may be \
2086N/A allowed to queue up in the backlog before being rejected. This should only \
2086N/A need to be changed if it is expected that the Directory Server will receive \
2086N/A large numbers of new connection attempts at the same time. Changes to this \
2086N/A configuration attribute will not take effect until the connection handler is \
2086N/A disabled and re-enabled, or until the Directory Server is restarted
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_BACKLOG_320=An unexpected error \
2086N/A occurred while processing the ds-cfg-accept-backlog attribute in \
2086N/A configuration entry %s, which is used to specify the accept backlog size: %s
2086N/ASEVERE_ERR_MVFILTER_INVALID_LDAP_FILTER_TYPE_321=The provided LDAP filter \
2086N/A "%s" cannot be used as a matched values filter because filters of type %s are \
2086N/A not allowed for use in matched values filters
2086N/ASEVERE_ERR_MVFILTER_INVALID_DN_ATTRIBUTES_FLAG_322=The provided LDAP filter \
2086N/A "%s" cannot be used as a matched values filter because it is an extensible \
2086N/A match filter that contains the dnAttributes flag, which is not allowed for \
2086N/A matched values filters
2086N/ASEVERE_ERR_MVFILTER_INVALID_AVA_SEQUENCE_SIZE_323=The provided matched values \
2086N/A filter could not be decoded because there were an invalid number of elements \
2086N/A in the attribute value assertion (expected 2, got %d)
2086N/ASEVERE_ERR_MVFILTER_CANNOT_DECODE_AVA_324=An error occurred while attempting \
2086N/A to decode the attribute value assertion in the provided matched values \
2086N/A filter: %s
2086N/ASEVERE_ERR_MVFILTER_INVALID_SUBSTRING_SEQUENCE_SIZE_325=The provided matched \
2086N/A values filter could not be decoded because there were an invalid number of \
2086N/A elements in the substring sequence (expected 2, got %d)
2086N/ASEVERE_ERR_MVFILTER_NO_SUBSTRING_ELEMENTS_326=The provided matched values \
2086N/A filter could not be decoded because there were no subInitial, subAny, or \
2086N/A subFinal components in the substring filter
2086N/ASEVERE_ERR_MVFILTER_MULTIPLE_SUBINITIALS_327=The provided matched values \
2086N/A filter could not be decoded because there were multiple subInitial components \
2086N/A in the substring filter
2086N/ASEVERE_ERR_MVFILTER_MULTIPLE_SUBFINALS_328=The provided matched values filter \
2086N/A could not be decoded because there were multiple subFinal components in the \
2086N/A substring filter
2086N/ASEVERE_ERR_MVFILTER_INVALID_SUBSTRING_ELEMENT_TYPE_329=The provided matched \
2086N/A values filter could not be decoded because there was an invalid element of \
2086N/A type %s in the substring filter
2086N/ASEVERE_ERR_MVFILTER_CANNOT_DECODE_SUBSTRINGS_330=The provided matched values \
2086N/A filter could not be decoded because an error occurred while decoding the \
2086N/A substring filter component: %s
2086N/ASEVERE_ERR_MVFILTER_CANNOT_DECODE_PRESENT_TYPE_331=The provided matched \
2086N/A values filter could not be decoded because an error occurred while decoding \
2086N/A the presence filter component: %s
2086N/ASEVERE_ERR_MVFILTER_INVALID_EXTENSIBLE_SEQUENCE_SIZE_332=The provided matched \
2086N/A values filter could not be decoded because there were an invalid number of \
2086N/A elements in the extensible match sequence (expected 2 or 3, found %d)
2086N/ASEVERE_ERR_MVFILTER_MULTIPLE_MATCHING_RULE_IDS_333=The provided matched \
2086N/A values filter could not be decoded because there were multiple matching rule \
2086N/A ID elements found in the extensible match filter sequence
2086N/ASEVERE_ERR_MVFILTER_MULTIPLE_ATTRIBUTE_TYPES_334=The provided matched values \
2086N/A filter could not be decoded because there were multiple attribute type \
2086N/A elements found in the extensible match filter sequence
2086N/ASEVERE_ERR_MVFILTER_MULTIPLE_ASSERTION_VALUES_335=The provided matched values \
2086N/A filter could not be decoded because there were multiple assertion value \
2086N/A elements found in the extensible match filter sequence
2086N/ASEVERE_ERR_MVFILTER_INVALID_EXTENSIBLE_ELEMENT_TYPE_336=The provided matched \
2086N/A values filter could not be decoded because there was an invalid element of \
2086N/A type %s in the extensible match filter
2086N/ASEVERE_ERR_MVFILTER_CANNOT_DECODE_EXTENSIBLE_MATCH_337=The provided matched \
2086N/A values filter could not be decoded because an error occurred while decoding \
2086N/A the extensible match filter component: %s
2086N/ASEVERE_ERR_MVFILTER_INVALID_ELEMENT_TYPE_338=The provided matched values \
2086N/A filter could not be decoded because it had an invalid BER type of %s
2086N/ASEVERE_ERR_MATCHEDVALUES_NO_CONTROL_VALUE_339=Cannot decode the provided \
2086N/A matched values control because it does not have a value
2086N/ASEVERE_ERR_MATCHEDVALUES_CANNOT_DECODE_VALUE_AS_SEQUENCE_340=Cannot decode \
2086N/A the provided matched values control because an error occurred while \
2086N/A attempting to decode the value as an ASN.1 sequence: %s
2086N/ASEVERE_ERR_MATCHEDVALUES_NO_FILTERS_341=Cannot decode the provided matched \
2086N/A values control because the control value does not specify any filters for use \
2086N/A in matching attribute values
2086N/ASEVERE_ERR_PWEXPIRED_CONTROL_INVALID_VALUE_342=Cannot decode the provided \
2086N/A control as a password expired control because the provided control had a \
2086N/A value that could not be parsed as an integer
2086N/ASEVERE_ERR_PWEXPIRING_NO_CONTROL_VALUE_343=Cannot decode the provided \
2086N/A password expiring control because it does not have a value
2086N/ASEVERE_ERR_PWEXPIRING_CANNOT_DECODE_SECONDS_UNTIL_EXPIRATION_344=Cannot \
2086N/A decode the provided control as a password expiring control because an error \
2086N/A occurred while attempting to decode the number of seconds until expiration: \
2086N/A %s
2086N/AMILD_WARN_LDAP_CLIENT_DUPLICATE_MESSAGE_ID_345=The Directory Server is \
2086N/A already processing another request on the same client connection with the \
2086N/A same message ID of %d
2086N/AMILD_WARN_LDAP_CLIENT_CANNOT_ENQUEUE_346=The Directory Server encountered an \
2086N/A unexpected error while attempting to add the client request to the work \
2086N/A queue: %s
2901N/AINFO_JMX_CONNHANDLER_DESCRIPTION_LISTEN_PORT_347=TCP port on \
2086N/A which this connection handler may accept administrative connections. Changes \
2086N/A to this configuration attribute will not take effect until the connection \
2086N/A handler is disabled and re-enabled, or until the Directory Server is \
2086N/A restarted
2086N/ASEVERE_ERR_JMX_CONNHANDLER_NO_LISTEN_PORT_348=No listen port was defined \
2086N/A using configuration ds-cfg-listen-port in configuration entry %s. This is a \
2086N/A required attribute
2086N/ASEVERE_ERR_JMX_CONNHANDLER_CANNOT_DETERMINE_LISTEN_PORT_349=An unexpected \
2086N/A error occurred while processing the ds-cfg-listen-port attribute in \
2086N/A configuration entry %s, which is used to specify the port on which to listen \
2086N/A for client connections: %s
2086N/AINFO_JMX_CONNHANDLER_DESCRIPTION_USE_SSL_350=Indicates whether this \
2086N/A connection handler should use SSL when accepting connections from clients. \
2086N/A Changes to this configuration attribute will not take effect until the \
2086N/A connection handler is disabled and re-enabled, or until the Directory Server \
2086N/A is restarted
2086N/ASEVERE_ERR_JMX_CONNHANDLER_CANNOT_DETERMINE_USE_SSL_351=An unexpected error \
2086N/A occurred while processing the ds-cfg-use-ssl attribute in configuration entry \
2086N/A %s, which is used to indicate whether to use SSL when accepting client \
2086N/A connections: %s
2901N/AINFO_JMX_CONNHANDLER_DESCRIPTION_SSL_CERT_NICKNAME_352=Nickname \
2086N/A of the certificate that the connection handler should use when accepting \
2086N/A SSL-based connections or performing StartTLS negotiation. Changes to this \
2086N/A configuration attribute will not take effect until the connection handler is \
2086N/A disabled and re-enabled, or until the Directory Server is restarted
2086N/ASEVERE_ERR_JMX_CONNHANDLER_CANNOT_DETERMINE_SSL_CERT_NICKNAME_353=An \
2086N/A unexpected error occurred while processing the ds-cfg-ssl-cert-nickname \
2086N/A attribute in configuration entry %s, which is used to specify the nickname of \
2458N/A the certificate to use for accepting SSL/TLS connections: %s
2086N/ASEVERE_ERR_PWPOLICYREQ_CONTROL_HAS_VALUE_354=Cannot decode the provided \
2086N/A control as a password policy request control because the provided control had \
2086N/A a value but the password policy request control should not have a value
2086N/ASEVERE_ERR_PWPOLICYRES_NO_CONTROL_VALUE_355=Cannot decode the provided \
2086N/A password policy response control because it does not have a value
2086N/ASEVERE_ERR_PWPOLICYRES_INVALID_WARNING_TYPE_356=Cannot decode the provided \
2086N/A password policy response control because the warning element has an invalid \
2086N/A type of %s
2086N/ASEVERE_ERR_PWPOLICYRES_INVALID_ERROR_TYPE_357=Cannot decode the provided \
2086N/A password policy response control because the error element has an invalid \
2086N/A type of %d
2086N/ASEVERE_ERR_PWPOLICYRES_INVALID_ELEMENT_TYPE_358=Cannot decode the provided \
2086N/A password policy response control because the value sequence has an element \
2086N/A with an invalid type of %s
2086N/ASEVERE_ERR_PWPOLICYRES_DECODE_ERROR_359=Cannot decode the provided password \
2086N/A policy response control: %s
2086N/AINFO_PWPERRTYPE_DESCRIPTION_PASSWORD_EXPIRED_360=passwordExpired
2086N/AINFO_PWPERRTYPE_DESCRIPTION_ACCOUNT_LOCKED_361=accountLocked
2086N/AINFO_PWPERRTYPE_DESCRIPTION_CHANGE_AFTER_RESET_362=changeAfterReset
2086N/AINFO_PWPERRTYPE_DESCRIPTION_PASSWORD_MOD_NOT_ALLOWED_363=passwordModNotAllowed
2086N/AINFO_PWPERRTYPE_DESCRIPTION_MUST_SUPPLY_OLD_PASSWORD_364=mustSupplyOldPassword
2086N/AINFO_PWPERRTYPE_DESCRIPTION_INSUFFICIENT_PASSWORD_QUALITY_365=insufficientPasswordQuality
2086N/AINFO_PWPERRTYPE_DESCRIPTION_PASSWORD_TOO_SHORT_366=passwordTooShort
2086N/AINFO_PWPERRTYPE_DESCRIPTION_PASSWORD_TOO_YOUNG_367=passwordTooYoung
2086N/AINFO_PWPERRTYPE_DESCRIPTION_PASSWORD_IN_HISTORY_368=passwordInHistory
2086N/AINFO_PWPWARNTYPE_DESCRIPTION_TIME_BEFORE_EXPIRATION_369=timeBeforeExpiration
2086N/AINFO_PWPWARNTYPE_DESCRIPTION_GRACE_LOGINS_REMAINING_370=graceAuthNsRemaining
2086N/AMILD_ERR_PROXYAUTH1_CANNOT_LOCK_USER_371=Unable to obtain a lock on user \
2086N/A entry %s for the proxied authorization V1 control validation
2086N/AMILD_ERR_PROXYAUTH1_UNUSABLE_ACCOUNT_372=Use of the proxied authorization V1 \
2086N/A control for user %s is not allowed by the password policy configuration
2086N/AMILD_ERR_PROXYAUTH2_CANNOT_LOCK_USER_373=Unable to obtain a lock on user \
2086N/A entry %s for the proxied authorization V2 control validation
2086N/AMILD_ERR_PROXYAUTH2_UNUSABLE_ACCOUNT_374=Use of the proxied authorization V2 \
2086N/A control for user %s is not allowed by the password policy configuration
2086N/ASEVERE_ERR_ACCTUSABLEREQ_CONTROL_HAS_VALUE_375=Cannot decode the provided \
2086N/A control as an account availability request control because the provided \
2086N/A control had a value but the account availability request control should not \
2086N/A have a value
2086N/ASEVERE_ERR_ACCTUSABLERES_NO_CONTROL_VALUE_376=Cannot decode the provided \
2086N/A account availability response control because it does not have a value
2086N/ASEVERE_ERR_ACCTUSABLERES_UNKNOWN_UNAVAILABLE_TYPE_377=The account \
2086N/A availability response control indicated that the account was unavailable but \
2086N/A had an unknown unavailable element type of %s
2086N/ASEVERE_ERR_ACCTUSABLERES_UNKNOWN_VALUE_ELEMENT_TYPE_378=The account \
2086N/A availability response control had an unknown ACCOUNT_USABLE_RESPONSE element \
2086N/A type of %s
2086N/ASEVERE_ERR_ACCTUSABLERES_DECODE_ERROR_379=Cannot decode the provided account \
2086N/A availability response control: %s
2086N/ASEVERE_ERR_ADDRESSMASK_PREFIX_DECODE_ERROR_380=Cannot decode the provided \
2093N/A address mask prefix because an invalid value was specified. The permitted \
2086N/A values for IPv4are 0 to32 and for IPv6 0 to128
2086N/ASEVERE_ERR_ADDRESSMASK_WILDCARD_DECODE_ERROR_381=Cannot decode the provided \
2093N/A address mask because an prefix mask was specified with an wild card "*" match \
2086N/A character
2086N/ASEVERE_ERR_ADDRESSMASK_FORMAT_DECODE_ERROR_382=Cannot decode the provided \
2086N/A address mask because the it has an invalid format
2086N/AMILD_ERR_LDAP_NO_CLEAR_SECURITY_PROVIDER_383=LDAP connection handler %s could \
2086N/A not send a clear-text response to the client because it does not have a \
2086N/A reference to a clear connection security provider
2086N/AMILD_ERR_LDAP_ATTRIBUTE_DUPLICATE_VALUES_384=The provided LDAP attribute %s \
2086N/A contains duplicate values
2086N/AMILD_ERR_LDAP_FILTER_UNKNOWN_MATCHING_RULE_385=The provided LDAP search \
2086N/A filter references unknown matching rule %s
2086N/AMILD_ERR_LDAP_FILTER_VALUE_WITH_NO_ATTR_OR_MR_386=The provided LDAP search \
2086N/A filter has an assertion value but does not include either an attribute type \
2086N/A or a matching rule ID
2086N/AFATAL_ERR_LDAP_REQHANDLER_DETECTED_JVM_ISSUE_CR6322825_387=Unable to call \
2086N/A select() in the LDAP connection handler: %s. It appears that your JVM may \
2086N/A be susceptible to the issue described at \
2086N/A http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6322825, and it is unable \
2086N/A to handle LDAP requests in its current configuration. Please upgrade to a \
2086N/A newer JVM that does not exhibit this behavior (Java 5.0 Update 8 or higher) \
2086N/A or set the number of available file descriptors to a value greater than or \
2086N/A equal to 8193 (e.g., by issuing the command 'ulimit -n 8193') before starting \
2086N/A the Directory Server
2086N/AMILD_ERR_PROXYAUTH1_CONTROL_NOT_CRITICAL_388=Unwilling to process the request \
2086N/A because it contains a proxied authorization V1 control which is not marked \
2086N/A critical. The proxied authorization control must always have a criticality \
2086N/A of "true"
2086N/AMILD_ERR_PROXYAUTH2_CONTROL_NOT_CRITICAL_389=Unwilling to process the request \
2086N/A because it contains a proxied authorization V2 control which is not marked \
2086N/A critical. The proxied authorization control must always have a criticality \
2086N/A of "true"
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_KEYMANAGER_DN_390=DN of the \
2086N/A configuration entry for the key manager provider that should be used with \
2086N/A this LDAP connection handler. Changes to this attribute will take effect \
2086N/A immediately, but only for subsequent attempts to access the key manager \
2086N/A provider for associated client connections
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_INVALID_KEYMANAGER_DN_391=Configuration attribute \
2624N/A ds-cfg-key-manager-provider of configuration entry %s has an invalid value \
2086N/A %s which does not reference an enabled key manager provider
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_KEYMANAGER_DN_392=An error \
2624N/A occurred while processing the ds-cfg-key-manager-provider attribute in \
2086N/A configuration entry %s, which is used to specify the key manager provider for \
2086N/A use with the LDAP connection handler: %s
2901N/AINFO_LDAP_CONNHANDLER_DESCRIPTION_TRUSTMANAGER_DN_393=DN of the \
2086N/A configuration entry for the trust manager provider that should be used with \
2086N/A this LDAP connection handler. Changes to this attribute will take effect \
2086N/A immediately, but only for subsequent attempts to access the trust manager \
2086N/A provider for associated client connections
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_INVALID_TRUSTMANAGER_DN_394=Configuration \
2624N/A attribute ds-cfg-trust-manager-provider of configuration entry %s has an \
2086N/A invalid value %s which does not reference an enabled trust manager provider
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_CANNOT_DETERMINE_TRUSTMANAGER_DN_395=An error \
2624N/A occurred while processing the ds-cfg-trust-manager-provider attribute in \
2086N/A configuration entry %s, which is used to specify the trust manager provider \
2086N/A for use with the LDAP connection handler: %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_KEYMANAGER_DN_396=The value of the \
2624N/A ds-cfg-key-manager-provider attribute has been updated to %s in \
2086N/A configuration entry %s
2086N/AINFO_LDAP_CONNHANDLER_NEW_TRUSTMANAGER_DN_397=The value of the \
2624N/A ds-cfg-trust-manager-provider attribute has been updated to %s in \
2086N/A configuration entry %s
2901N/AINFO_JMX_CONNHANDLER_DESCRIPTION_KEYMANAGER_DN_398=DN of the \
2086N/A key manager provider that the connection handler should use when accepting \
2086N/A SSL-based connections or performing StartTLS negotiation. Changes to this \
2086N/A configuration attribute will take effect immediately
2086N/ASEVERE_ERR_JMX_CONNHANDLER_INVALID_KEYMANAGER_DN_399=An error occurred while \
2624N/A processing the ds-cfg-key-manager-provider attribute in configuration \
2086N/A entry %s, because the provided key manager DN %s does not refer to an enabled \
2086N/A key manager provider
2086N/ASEVERE_ERR_JMX_CONNHANDLER_CANNOT_DETERMINE_KEYMANAGER_DN_400=An unexpected \
2624N/A error occurred while processing the ds-cfg-key-manager-provider attribute \
2086N/A in configuration entry %s, which is used to specify the DN of the key manager \
2458N/A provider to use for accepting SSL/TLS connections: %s
2086N/AMILD_ERR_LDAP_CONNHANDLER_CANNOT_SET_SECURITY_PROVIDER_401=An error occurred \
2086N/A while attempting to configure the connection security provider for the client \
2086N/A connection: %s
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_NO_KEYMANAGER_DN_402=The LDAP connection handler \
2086N/A defined in configuration entry %s is configured to use either SSL or \
2086N/A StartTLS, but does not specify which key manager provider should be used
2086N/ASEVERE_ERR_LDAP_CONNHANDLER_NO_TRUSTMANAGER_DN_403=The LDAP connection \
2086N/A handler defined in configuration entry %s is configured to use either SSL or \
2086N/A StartTLS, but does not specify which trust manager provider should be used
2086N/AINFO_LDAPS_CONNHANDLER_DESCRIPTION_ENABLE_404=Specifies whether to enable the \
2086N/A LDAPS connection handler
2086N/AMILD_ERR_LDAP_FILTER_NOT_EXACTLY_ONE_405=The provided search filter "%s" \
2086N/A could not be decoded because the NOT filter between positions %d and %d did \
2086N/A not contain exactly one filter component
2086N/AINFO_SORTREQ_CONTROL_NO_VALUE_406=Unable to decode the provided control as a \
2086N/A server-side sort request control because it does not include a control value
2086N/AINFO_SORTREQ_CONTROL_UNDEFINED_ATTR_407=Unable to process the provided \
2086N/A server-side sort request control because it references attribute type %s \
2086N/A which is not defined in the server schema
2086N/AINFO_SORTREQ_CONTROL_UNDEFINED_ORDERING_RULE_408=Unable to process the \
2086N/A provided server-side sort request control because it references undefined \
2086N/A ordering matching rule %s
2086N/AINFO_SORTREQ_CONTROL_INVALID_SEQ_ELEMENT_TYPE_409=Unable to process the \
2086N/A provided server-side sort request control because the value sequence contains \
2086N/A an element with an unsupported type of %s
2086N/AINFO_SORTREQ_CONTROL_CANNOT_DECODE_VALUE_410=Unable to process the provided \
2086N/A server-side sort request control because an error occurred while attempting \
2086N/A to decode the control value: %s
2086N/AINFO_SORTRES_CONTROL_NO_VALUE_411=Unable to decode the provided control as a \
2086N/A server-side sort response control because it does not include a control value
2086N/AINFO_SORTRES_CONTROL_CANNOT_DECODE_VALUE_412=Unable to process the provided \
2086N/A server-side sort response control because an error occurred while attempting \
2086N/A to decode the control value: %s
2086N/AINFO_SORTREQ_CONTROL_NO_ATTR_NAME_413=Unable to process the provided \
2086N/A server-side sort request control because the sort order string "%s" included \
2086N/A a sort key with no attribute name
2086N/AINFO_SORTREQ_CONTROL_NO_MATCHING_RULE_414=Unable to process the provided \
2086N/A server-side sort request control because the sort order string "%s" included \
2086N/A a sort key with a colon but no matching rule name
2086N/AINFO_SORTREQ_CONTROL_NO_SORT_KEYS_415=Unable to process the provided \
2086N/A server-side sort request control because it did not contain any sort keys
2086N/AINFO_SORTREQ_CONTROL_NO_ORDERING_RULE_FOR_ATTR_416=Unable to process the \
2086N/A provided server-side sort request control because it included attribute %s \
2086N/A which does not have a default ordering matching rule and no ordering rule was \
2086N/A specified in the sort key
2086N/AINFO_VLVREQ_CONTROL_NO_VALUE_417=Unable to decode the provided control as a \
2086N/A VLV request control because it does not include a control value
2086N/AINFO_VLVREQ_CONTROL_INVALID_ELEMENT_COUNT_418=Unable to decode the provided \
2086N/A control as a VLV request control because it contains an invalid number of \
2086N/A elements: %d
2086N/AINFO_VLVREQ_CONTROL_INVALID_TARGET_TYPE_419=Unable to decode the provided \
2086N/A control as a VLV request control because the target element type %s is \
2086N/A invalid
2086N/AINFO_VLVREQ_CONTROL_CANNOT_DECODE_VALUE_420=Unable to process the provided \
2086N/A VLV request control because an error occurred while attempting to decode the \
2086N/A control value: %s
2086N/AINFO_VLVRES_CONTROL_NO_VALUE_421=Unable to decode the provided control as a \
2086N/A VLV response control because it does not include a control value
2086N/AINFO_VLVRES_CONTROL_INVALID_ELEMENT_COUNT_422=Unable to decode the provided \
2086N/A control as a VLV response control because it contains an invalid number of \
2086N/A elements: %d
2086N/AINFO_VLVRES_CONTROL_CANNOT_DECODE_VALUE_423=Unable to process the provided \
2086N/A VLV response control because an error occurred while attempting to decode the \
2086N/A control value: %s
2086N/AINFO_GETEFFECTIVERIGHTS_INVALID_AUTHZID_424=The authorization ID "%s" \
2086N/A contained in the geteffectiverights control is invalid because it does not \
2086N/A start with "dn:" to indicate a user DN
2086N/AINFO_GETEFFECTIVERIGHTS_DECODE_ERROR_425=Cannot decode the provided \
2086N/A geteffectiverights request control: %s
2086N/AINFO_CANNOT_DECODE_GETEFFECTIVERIGHTS_AUTHZID_DN_426=Unable to decode authzid \
2086N/A DN string "%s" as a valid distinguished name: %s
2086N/AMILD_ERR_LDAP_FILTER_ENCLOSED_IN_APOSTROPHES_427=An LDAP filter enclosed in \
2086N/A apostrophes is invalid: %s
2086N/AINFO_JMX_CONNHANDLER_DESCRIPTION_ENABLE_428=Specifies whether to enable the \
2086N/A JMX connection handler
2086N/AMILD_ERR_LDAP_FILTER_INVALID_CHAR_IN_ATTR_TYPE_429=The provided search filter \
2086N/A contains an invalid attribute type '%s' with invalid character '%s' at \
2086N/A position %d
2086N/AMILD_ERR_LDAP_FILTER_EXTENSIBLE_MATCH_NO_AD_OR_MR_430=The provided search \
2086N/A filter "%s" could not be decoded because the extensible match component \
2086N/A starting at position %d did not include either an attribute description or a \
2086N/A matching rule ID. At least one of them must be provided
2086N/AMILD_ERR_LDAPV2_CONTROLS_NOT_ALLOWED_431=LDAPv2 clients are not allowed to \
2086N/A use request controls
6134N/ASEVERE_ERR_CONNHANDLER_CANNOT_BIND_432=The %s connection handler \
2086N/A defined in configuration entry %s was unable to bind to %s:%d: %s
2086N/AMILD_ERR_JMX_ADD_INSUFFICIENT_PRIVILEGES_434=You do not have sufficient \
2086N/A privileges to perform add operations through JMX
2086N/AMILD_ERR_JMX_DELETE_INSUFFICIENT_PRIVILEGES_435=You do not have sufficient \
2086N/A privileges to perform delete operations through JMX
2086N/AMILD_ERR_JMX_MODIFY_INSUFFICIENT_PRIVILEGES_436=You do not have sufficient \
2086N/A privileges to perform modify operations through JMX
2086N/AMILD_ERR_JMX_MODDN_INSUFFICIENT_PRIVILEGES_437=You do not have sufficient \
2086N/A privileges to perform modify DN operations through JMX
2086N/AMILD_ERR_JMX_SEARCH_INSUFFICIENT_PRIVILEGES_438=You do not have sufficient \
2086N/A privileges to perform search operations through JMX
2086N/AMILD_ERR_JMX_INSUFFICIENT_PRIVILEGES_439=You do not have sufficient \
2086N/A privileges to establish the connection through JMX. At least JMX_READ \
2086N/A privilege is required
2105N/AMILD_ERR_INTERNALCONN_NO_SUCH_USER_440=User %s does not exist in the directory
2151N/AMILD_ERR_INTERNALOS_CLOSED_441=This output stream has been closed
2151N/AMILD_ERR_INTERNALOS_INVALID_REQUEST_442=The provided LDAP message had an \
2151N/A invalid operation type (%s) for a request
2151N/AMILD_ERR_INTERNALOS_SASL_BIND_NOT_SUPPORTED_443=SASL bind operations are not \
2151N/A supported over internal LDAP sockets
2151N/AMILD_ERR_INTERNALOS_STARTTLS_NOT_SUPPORTED_444=StartTLS operations are not \
2151N/A supported over internal LDAP sockets
2390N/ASEVERE_WARN_LDIF_CONNHANDLER_LDIF_DIRECTORY_NOT_DIRECTORY_445=The value %s \
2390N/A specified as the LDIF directory path for the LDIF connection handler defined \
2390N/A in configuration entry %s exists but is not a directory. The specified path \
2390N/A must be a directory. The LDIF connection handler will start, but will not \
2390N/A be able to proces any changes until this path is changed to a directory
2390N/AMILD_WARN_LDIF_CONNHANDLER_LDIF_DIRECTORY_MISSING_446=The directory %s \
2390N/A referenced by the LDIF connection handler defined in configuration entry %s \
2390N/A does not exist. The LDIF connection handler will start, but will not be \
2390N/A able to process any changes until this directory is created
2390N/AMILD_ERR_LDIF_CONNHANDLER_CANNOT_READ_CHANGE_RECORD_NONFATAL_447=An error \
2390N/A occurred while trying to read a change record from the LDIF file: %s. This \
2390N/A change will be skipped but processing on the LDIF file will continue
2390N/AMILD_ERR_LDIF_CONNHANDLER_CANNOT_READ_CHANGE_RECORD_FATAL_448=An error \
2390N/A occurred while trying to read a change record from the LDIF file: %s. No \
2390N/A further processing on this LDIF file can be performed
2390N/AINFO_LDIF_CONNHANDLER_UNKNOWN_CHANGETYPE_449=Unsupported change type %s
2390N/AINFO_LDIF_CONNHANDLER_RESULT_CODE_450=Result Code: %d (%s)
2390N/AINFO_LDIF_CONNHANDLER_ERROR_MESSAGE_451=Additional Info: %s
2390N/AINFO_LDIF_CONNHANDLER_MATCHED_DN_452=Matched DN: %s
2390N/AINFO_LDIF_CONNHANDLER_REFERRAL_URL_453=Referral URL: %s
2390N/ASEVERE_ERR_LDIF_CONNHANDLER_IO_ERROR_454=An I/O error occurred while the LDIF \
2390N/A connection handler was processing LDIF file %s: %s
2390N/ASEVERE_ERR_LDIF_CONNHANDLER_CANNOT_RENAME_455=An error occurred while the \
2390N/A LDIF connection handler was attempting to rename partially-processed file \
2390N/A from %s to %s: %s
2390N/ASEVERE_ERR_LDIF_CONNHANDLER_CANNOT_DELETE_456=An error occurred while the \
2390N/A LDIF connection handler was attempting to delete processed file %s: %s
3148N/ASEVERE_ERR_CONNHANDLER_ADDRESS_INUSE_457=Address already in use
4848N/AMILD_ERR_SUBENTRIES_NO_CONTROL_VALUE_458=Cannot decode the provided \
4848N/A subentries control because it does not have a value
4848N/AMILD_ERR_SUBENTRIES_CANNOT_DECODE_VALUE_459=Cannot decode the provided \
4848N/A subentries control because an error occurred while attempting \
4848N/A to decode the control value: %s
3349N/AINFO_SNMP_CONNHANDLER_DESCRIPTION_LISTEN_PORT_1458=SNMP port on \
3349N/A which this connection handler accepts SNMP requests. Changes \
3349N/A to this configuration attribute will not take effect until the connection \
3349N/A handler is disabled and re-enabled, or until the Directory Server is \
3349N/A restarted
3349N/ASEVERE_ERR_SNMP_CONNHANDLER_NO_LISTEN_PORT_1459=No listen port was defined \
3349N/A using configuration ds-cfg-listen-port in configuration entry %s. This is a \
3349N/A required attribute
3349N/ASEVERE_ERR_SNMP_CONNHANDLER_CANNOT_DETERMINE_LISTEN_PORT_1460=An unexpected \
3619N/A error occurred while processing the ds-cfg-listen-port attribute in \
3349N/A configuration entry %s, which is used to specify the port on which to listen \
3349N/A for client connections: %s
3349N/ASEVERE_ERR_SNMP_CONNHANDLER_CANNOT_BE_STARTED_1461=An unexpected \
3349N/A error occurred when this connection handler started
3349N/ASEVERE_ERR_SNMP_CONNHANDLER_NO_CONFIGURATION_1462=No Configuration was defined \
3349N/A for this connection handler. The configuration parameters ds-cfg-listen-port \
3349N/A and ds-cfg-trap-port are required by the connection handler to start
3349N/ASEVERE_ERR_SNMP_CONNHANDLER_TRAPS_DESTINATION_1463=Traps Destination %s is \
3680N/A an unknown host. Traps will not be sent to this destination
3349N/ASEVERE_ERR_SNMP_CONNHANDLER_NO_OPENDMK_JARFILES_1464=You do not have the \
4431N/A appropriate OpenDMK jar files to enable the SNMP Connection Handler. \
3349N/A Please go under http://opendmk.dev.java.net and set the \
4431N/A opendmk-jarfile configuration parameter to set the full path \
3349N/A of the required jdmkrt.jar file. The SNMP connection Handler didn't started
4287N/ASEVERE_ERR_SNMP_CONNHANDLER_BAD_CONFIGURATION_1465=Cannot initialize the \
4287N/A SNMP Connection Handler. Please check the configuration attributes
3678N/ASEVERE_ERR_SNMP_CONNHANDLER_NO_VALID_TRAP_DESTINATIONS_1466=No valid trap \
3678N/A destinations has been found. No trap will be sent
4134N/ASEVERE_ERR_ASN1_READ_ERROR_1500=An error occured while accessing the \
4134N/A underlying data source: %s
4134N/ASEVERE_ERR_ASN1_EOF_ERROR_1501=An unexpected end of file reached while trying \
4134N/A to read %d bytes from the underlying data source
4134N/ASEVERE_ERR_ASN1_INVALID_STATE_1502=Invalid reader state: %d
4134N/ASEVERE_ERR_SUBTREE_DELETE_INVALID_CONTROL_VALUE_1503=Cannot decode the provided \
4134N/A subtree delete control because it contains a value
4134N/A SEVERE_ERR_CONNHANDLER_SSL_CANNOT_INITIALIZE_1504=An error occurred \
4134N/A while attempting to initialize the SSL context for use in the LDAP \
4134N/A Connection Handler: %s
4383N/AMILD_ERR_LDAP_UNSUPPORTED_PROTOCOL_VERSION_1505=The Directory Server does not \
4383N/A support LDAP protocol version %d. This connection will be closed
4431N/ASEVERE_ERR_SNMP_CONNHANDLER_OPENDMK_JARFILES_DOES_NOT_EXIST_1506=The specified \
4431N/A OpenDMK jar file '%s' could not be found. Verify that the value set in the \
4431N/A opendmk-jarfile configuration parameter of the SNMP connection handler is the \
4431N/A valid path to the jdmkrt.jar file and that the file is accessible
4431N/ASEVERE_ERR_SNMP_CONNHANDLER_OPENDMK_JARFILES_NOT_OPERATIONAL_1507=The required \
4431N/A classes could not be loaded using jar file '%s'. Verify that the jar file \
4431N/A is not corrupted
4501N/AMILD_ERR_CANNOT_DECODE_CONTROL_VALUE_1508=Cannot decode the provided \
4501N/A control %s because an error occurred while attempting to \
4501N/A decode the control value: %s
4671N/AMILD_ERR_ECLN_NO_CONTROL_VALUE_1509=Cannot decode the provided entry changelog \
4671N/A notification control because it does not have a value
4671N/AMILD_ERR_ECLN_CANNOT_DECODE_VALUE_1510=Cannot decode the provided entry \
4671N/A changelog notification control because an error occurred while attempting to \
4671N/A decode the control value: %s
4778N/ASEVERE_ERR_UNEXPECTED_CONNECTION_CLOSURE_1511=The connection to the Directory \
4778N/AServer was closed while waiting for a response
5400N/AINFO_ERGONOMIC_SIZING_OF_REQUEST_HANDLER_THREADS_1512=Connection handler '%s' \
5400N/A does not specify the number of request handler threads: defaulting to %d threads
5588N/AMILD_ERR_LDAP_CLIENT_IO_ERROR_DURING_READ_1513=An IO error occurred while \
5588N/A reading a request from the client: %s
5588N/AMILD_ERR_LDAP_CLIENT_IO_ERROR_BEFORE_READ_1514=Connection reset by client
6134N/AMILD_ERR_CONNHANDLER_CONFIG_CHANGES_REQUIRE_RESTART_1516=The server received \
6134N/A configuration changes that require a restart of the %s connection handler \
6134N/A to take effect