// we need a more advanced connection wrapper.
// Creating the response
if ( batchResponseDsml != null )
{
AuthResponseDsml authResponseDsml = new AuthResponseDsml();
LdapResultCodec ldapResult = new LdapResultCodec();
ldapResult.setResultCode( ResultCodeEnum.UNWILLING_TO_PERFORM );
ldapResult.setErrorMessage( "This kind of request is not yet supported." );
authResponseDsml.setLdapResult( ldapResult );
batchResponseDsml.addResponse( authResponseDsml );
}
}