Re: LDAP bind requests being dropped

2024-02-14 Thread Emmanuel Lécharny
Ok, so... If you activate CODEC_LOG in DEBUG mod,e you'll have all the info about the PDU decoding. This part: if ( messageContainer.getState() == TLVStateEnum.PDU_DECODED ) { if ( CODEC_LOG.isDebugEnabled() ) { CODEC_LOG.debug( I18n.msg( I18n.MSG_14002_DECODED_LDAP_M

Re: LDAP bind requests being dropped

2024-02-13 Thread Marc Boorshtein
> > > so you see the PDU being processed on the server, AFAIU. > > Yes > Do you get any log from the BindRequestHandler? > > No, we enabled logging on BindRequestHandler and see logging for other transactions, but not these > Is this a Sasl bind request? > > No, simple bind > Any control in t

Re: LDAP bind requests being dropped

2024-02-13 Thread Emmanuel Lécharny
Hi Marc, so you see the PDU being processed on the server, AFAIU. Do you get any log from the BindRequestHandler? Like the one in the handle() method: public void handle( LdapSession ldapSession, BindRequest bindRequest ) throws Exception { LOG.debug( "Received: {}", bindRequest

LDAP bind requests being dropped

2024-02-13 Thread Marc Boorshtein
I'm seeing a very strange issue where an LDAP Bind request is coming into the server, we can see it in a packet capture, but the ApacheDS frontend is not registering it. There doesn't appear to be a heavy load, and for the couple of seconds before hand it doesn't look like there are any requests.