147148149150151152153154155156157
private LdapMessageCodec readResponse( ByteBuffer bb ) throws IOException, DecoderException, NamingException { LdapMessageCodec messageResp = null; while ( true ) { int nbRead = channel.read( bb );
249250251252253254255256257258259
sendMessage( bb ); bb.clear(); // Get the response LdapMessageCodec response = readResponse( bb ); LdapResultCodec result = ((LdapResponseCodec)response).getLdapResult(); if ( result.getResultCode() == ResultCodeEnum.SUCCESS ) {
305306307308309310311312313314315
367368369370371372373374375376377
432433434435436437438439440441442
519520521522523524525526527528529
sendMessage( bb ); bb.clear(); // Get the bind response LdapMessageCodec response = readResponse( bb ); LdapResultCodec result = ((LdapResponseCodec)response).getLdapResult(); if ( result.getResultCode() == ResultCodeEnum.SUCCESS ) {