Hello,

Something I’ve been aware of for some time, I’ve ignored because it appears to 
be a red herring, not aware of any ill effect to application processing or 
connections.  

However, the error shows up consistently in the Apache Tomcat logs during 
Apache Fortress rest processing.

Notice the timestamps are exactly 30 minutes apart:

```
2023-07-09 11:32:01,785 (ERROR) ERR_04102_UNABLE_TO_BIND_CONNECTION unable to 
bind connection: ERR_13611_VALUE_MISSING_ON_RDN A value is missing on some RDN
2023-07-09 12:02:01,786 (ERROR) ERR_04102_UNABLE_TO_BIND_CONNECTION unable to 
bind connection: ERR_13611_VALUE_MISSING_ON_RDN A value is missing on some RDN
2023-07-09 12:32:01,787 (ERROR) ERR_04102_UNABLE_TO_BIND_CONNECTION unable to 
bind connection: ERR_13611_VALUE_MISSING_ON_RDN A value is missing on some RDN
2023-07-09 13:02:01,787 (ERROR) ERR_04102_UNABLE_TO_BIND_CONNECTION unable to 
bind connection: ERR_13611_VALUE_MISSING_ON_RDN A value is missing on some RDN
… continue on forever
```

Nothing unusual in the application.  It uses an LDAP connection pool.  

```
// Create the Admin pool
adminPool = new LdapConnectionPool( poolFactory );
adminPool.setTestOnBorrow( testOnBorrow );
adminPool.setMaxTotal( max );
adminPool.setBlockWhenExhausted( isBlockOnMaxConnection );
adminPool.setMaxWaitMillis( maxConnBlockTime );
adminPool.setMinIdle( min );
adminPool.setMaxIdle( -1 );
adminPool.setTestWhileIdle( testWhileIdle );
adminPool.setTimeBetweenEvictionRunsMillis( timeBetweenEvictionRunMillis );
```

Any ideas on what’s going on here? I’m using the latest version, 2.1.3.

Thanks

—
Shawn


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@directory.apache.org
For additional commands, e-mail: dev-h...@directory.apache.org

Reply via email to