I'm using Oracle's Java API Extensions to JNDI for accessing Oracle Internet Directory 11g (ldapjclnt11.jar library). A new dir context (connection) is created by calling ConnectionUtil.getDefaultDirCtx().
My question is: does this mechanism for creating a connection to the OID use some kind of connection pooling for the JNDI connections? if not, is there a way to pool the connections?
I'll be authenticating hundreds of users concurrently with OID, and I'm worried that the performance would suffer if I don't pool my OID connections.