SQLNET.ALLOWED_LOGON_VERSION
If i set this parameter in the sqlnet.ora file, do i need to set a corresponding value via jdbc similar to "oracle.net..." similar to encryption?
sqlnet.ora entry
SQLNET.ALLOWED_LOGON_VERSION = 10
I'm running 10gR1 on Linux and trying to connect via jdbc (ojdbc14.jar) and its failing with
ORA-28040: No matching authentication protocol
If SQLNET.ALLOWED_LOGON_VERSION is set only in the sqlnet.ora with no property in jdbc i get
ORA-28040: No matching authentication protocol
If SQLNET.ALLOWED_LOGON_VERSION is set in sqlnet.ora and in the jdbc prop (oracle.net.allowed_logon_version=10) file I still get
ORA-28040: No matching authentication protocol
It says to set it on both the client and server -- how do you set it on the client?
Any guidance is appreciated
Thanks,