java.sql.SQLException:Oracle错误ORA-12650DSRA0010E:sql状态=99999,错误代码=1265

java.sql.SQLException:Oracle错误ORA-12650DSRA0010E:sql状态=99999,错误代码=1265,java,oracle,websphere,oracle12c,thin-client,Java,Oracle,Websphere,Oracle12c,Thin Client,我安装了一个WAS6.1版本,它使用的是Java1.5。最近,我们将数据库更新为Oracle 12c。 当我尝试连接到12c数据源时,我发现了错误 "java.sql.SQLException: Oracle Error ORA-12650DSRA0010E: SQL State = 99999, Error Code = 1,265" ** - Steps that I have tried: ** 1- using ojdbc5.jar(already tried ojdbc14.

我安装了一个WAS6.1版本,它使用的是Java1.5。最近,我们将数据库更新为Oracle 12c。 当我尝试连接到12c数据源时,我发现了错误

"java.sql.SQLException: Oracle Error ORA-12650DSRA0010E: SQL State = 99999, Error Code = 1,265"


**

 - Steps that I have tried:

**
1- using ojdbc5.jar(already tried ojdbc14.jar and ojdbc6.jar bith of them not working

2-Set the custom properties 
   prop.put("oracle.net.encryption_client", "REQUIRED");
   prop.put("oracle.net.encryption_types_client", "( DES40 )");
   prop.put("oracle.net.crypto_checksum_client", "REQUESTED");
   prop.put("oracle.net.crypto_checksum_types_client", "( MD5 )");

3- I am using a thin client and 
**jdbc:oracle:thin:@hostname:port:servicename** 

I havetried the below thin client address also

**jdbc:oracle:thin:/hostname:port:/servicename** 

Please help me to fix this issue. My Lincence to Oracle 12c will end on 13th Feb 2017. I know it's too late but please help.

Thanks in Advance.

Date:10-Feb-2017

Oracle 12c不是WebSphere Application Server v6.1支持的数据库


请升级到更高版本的WebSphere Application Server。

您的数据库可能配置为需要某种加密,并且与客户端配置不一致。尝试在服务器端禁用完整性和加密,查看更多详细信息。如果我需要从WAS6.1连接到12c数据库,是否有人知道我必须使用的oci驱动程序的hwich版本。