Details
-
Bug
-
Status: Open
-
Blocker
-
Resolution: Unresolved
-
1.8.0
-
None
-
None
-
WebSphere [IBMJAVA71 7.1.3.0 cf061521.02]Platform 8.5.5.6 [ND 8.5.5.6 cf061521.02]
Description
When using NettyAvroRpcClient on Ibm Webpshere the code forces use of SunX509 algorithms through this line:
TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509");
We would like this to be changed so that it uses the default algorithm as set on the server, e.g.:
TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());