In order to build OpenSSO with JDK 1.6, we need to add two methods to this class.
amserver/source/com/iplanet/dpro/session/jdbc/JDBCConnectionPool.java =================================================================== *** 624,627 **** --- 624,635 ---- return isolationLevel; } + public boolean isWrapperFor(Class c) { + return false; + } + + public Object unwrap(Class iface) { + return null; + } + }