[ 
https://issues.apache.org/jira/browse/IGNITE-15915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17444473#comment-17444473
 ] 

Igor Sapego commented on IGNITE-15915:
--------------------------------------

[~ptupitsyn] looks good to me.

> .NET thin: SSL keystore shouldn't be a mandatory parameter
> ----------------------------------------------------------
>
>                 Key: IGNITE-15915
>                 URL: https://issues.apache.org/jira/browse/IGNITE-15915
>             Project: Ignite
>          Issue Type: Bug
>          Components: platforms
>    Affects Versions: 2.5
>            Reporter: Stanislav Lukyanov
>            Assignee: Pavel Tupitsyn
>            Priority: Major
>              Labels: .NET
>             Fix For: 2.13
>
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Currently, SslStreamFactory can't be configured without specifying 
> client-side certificates. 
> This shouldn't be the case - SSL can be used without any certificates on the 
> client.
> Workaround:
> {code}
> class SimpleSslStreamFactory : ISslStreamFactory {
>     public SslStream Create(Stream stream, string targetHost)
>     {
>         var sslStream = new SslStream(stream, false, null, null);
>         sslStream.AuthenticateAsClient(targetHost);
>         return sslStream;
>     }
> }
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)

Reply via email to