public void bind( Dn name ) throws LdapException, IOException
{
LOG.debug( "Unauthenticated authentication Bind request : {}", name );
// Create the BindRequest
BindRequest bindRequest = createBindRequest( name.getName(), StringConstants.EMPTY_BYTES, null );
BindResponse bindResponse = bind( bindRequest );
processResponse( bindResponse );
}