BEGIN
-- Open an SSL connection to the LDAP
ret_val := DBMS_LDAP.open_ssl(ldap_session,NULL,NULL,ldap_auth_level);
EXCEPTION
WHEN OTHERS THEN
dbms_output.put_line(SQLERRM);
END;
dbms\_output.put\_line('Opened an SSL connection to the LDAP');
dbms\_output.put\_line('ret\_val to open SSL connection '||ret\_val);
ret_val returns value 0.Does that mean it established connection?