启用HTTPS后,我似乎无法使Neo4jclient与neo4j一起使用。连接时发生错误。
var client = new GraphClient(new Uri("https://localhost:7473/db/data"));
client.Connect();
当它只是HTTP时,它完全正常。
这就是我得到的。
An exception of type 'System.AggregateException' occurred in Neo4jClient.dll but was not handled in user code
有没有人试图让Neo4jClient在启用HTTPS支持的情况下工作。 提前致谢。
答案 0 :(得分:1)
我很确定问题是因为SSL客户端不信任证书,在开发中你可以在开始连接之前这样做:
ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;
但仅用于开发不要在生产环境中执行此操作,因为它会使您的代码信任任何和所有证书。对于生产,您需要信任为https端点生成的任何证书。
Neo4jClient
使用HttpClient
作为其连接,并在任何不受信任的证书上使用。证书一旦被信任,连接就像http一样工作。