You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flume.apache.org by "Martin Todorov (JIRA)" <ji...@apache.org> on 2018/06/13 09:50:00 UTC

[jira] [Created] (FLUME-3245) NettyAvroRpcClient does not support IbmX509

Martin Todorov created FLUME-3245:
-------------------------------------

             Summary: NettyAvroRpcClient does not support IbmX509
                 Key: FLUME-3245
                 URL: https://issues.apache.org/jira/browse/FLUME-3245
             Project: Flume
          Issue Type: Bug
          Components: Client SDK
    Affects Versions: 1.8.0
         Environment: WebSphere [IBMJAVA71 7.1.3.0 cf061521.02]Platform 8.5.5.6 [ND 8.5.5.6 cf061521.02]
            Reporter: Martin Todorov


When using NettyAvroRpcClient on Ibm Webpshere the code forces use of SunX509 algorithms through this line:

 
{code:java}
TrustManagerFactory tmf = TrustManagerFactory.getInstance("SunX509");
{code}
We would like [this|https://github.com/apache/flume/blob/trunk/flume-ng-sdk/src/main/java/org/apache/flume/api/NettyAvroRpcClient.java#L744] to be changed so that it uses the default algorithm as set on the server, e.g.:

 
{code:java}
TrustManagerFactory tmf = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());{code}
 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@flume.apache.org
For additional commands, e-mail: issues-help@flume.apache.org