Hi everyone!
We would like to implement our own handling of AbandonRequests (still trying to
proxy another LDAP server 😉 ).
Can someone explain why AbandonRequests are not passed to handler classes? The
code snippet below comes from LdapRequestHandler:
```
if ( message instanceof AbandonRequest )
{
return;
}
handle( ldapSession, message );
```
This makes it difficult for us to handle the request, i.e. sending it to the
proxied master server. As this case is handled explicitly there must be a
reason I guess.
Cheers,
Christopher