Reputation: 47
I am trying to protect services exposed with remoting using certificate.
Service fabric does provide a mechanism to do it using X509Credentials class
Seems like it is trying to load the certificate from local store and cannot accept X509Certificate2 as a parameter .
Any idea how to achieve this ?
Upvotes: 0
Views: 223
Reputation: 11470
There's good documentation about this here.
ServiceProxyFactory
, provide FabricTransportRemotingSettings
, with SecurityCredentials
.Upvotes: 1