I am able to run a stateless service in a local service fabric cluster. However, when I add an https end point, activation fails.
I made the following changes:
ServiceManifest.xml:
<Endpoint Name="ServiceEndpoint" Type="Input" Protocol="https" Port="443" CertificateRef="my_api_cert" />
ApplicationManifest.xml:
<Policies>
<EndpointBindingPolicy EndpointRef="ServiceEndpoint" CertificateRef="my_api_cert" />
</Policies>
<Certificates>
<EndpointCertificate X509FindValue="[Api_SslCertHash]" Name="my_api_cert" />
</Certificates>
I have uploaded the newly created certificate to Local Machine\My store too.
I get the following error in cluster manager:
Error event: SourceId='System.Hosting', Property='Activation:1.0:1.0'. There was an error during activation.
What could be the solution for this issue?
Try to add the following to the applicationmanifest.xml