// Get the Value and store it in the BindResponse
TLV tlv = container.getCurrentTLV();
Dn matchedDn = null;
ResultCodeEnum resultCode = null;
ResultResponse response = ( ResultResponse ) container.getMessage();
LdapResult ldapResult = response.getLdapResult();
resultCode = ldapResult.getResultCode();
// We have to handle the special case of a 0 length matched
// Dn
if ( tlv.getLength() == 0 )