Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hrcpp 262/pull csharp ssl #65

Merged

Conversation

rigazilla
Copy link
Contributor

Ssl integration for C# hotrod client

ConfigurationBuilder conf = new ConfigurationBuilder();
conf.AddServer().Host("127.0.0.1").Port(11222).ConnectionTimeout(90000).SocketTimeout(900);
SslConfigurationBuilder sslConfB = conf.Ssl();
sslConfB.Enable().ServerCAFile("c:\\tmp\\infinispan-ca.pem");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please commit the pem file as part of the test

@rigazilla rigazilla force-pushed the HRCPP-262/pull_csharp_ssl branch 2 times, most recently from 270a16b to 159b991 Compare May 10, 2016 14:26
@rigazilla
Copy link
Contributor Author

added and rebased

ConfigurationBuilder conf = new ConfigurationBuilder();
conf.AddServer().Host("127.0.0.1").Port(11222).ConnectionTimeout(90000).SocketTimeout(900);
SslConfigurationBuilder sslConfB = conf.Ssl();
if (!System.IO.File.Exists("c:\\tmp\\infinispan-ca.pem"))
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can't you point to the proper file directly ?

@rigazilla
Copy link
Contributor Author

probably I can arrange the build to copy the file in the same place of the executable and then use a relative path.

@rigazilla
Copy link
Contributor Author

ok done

@tristantarrant tristantarrant merged commit 5b76c89 into infinispan:master May 11, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants