I can start a stateless service in a local cluster cluster. However, when I add the https endpoint, 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 downloaded the newly created certificate to the local computer \ My store too.
The following error occurs in the cluster manager:
Error event: SourceId = 'System.Hosting', property = 'Activation: 1.0: 1.0'. An error occurred during activation.
What could be the solution to this problem?
source share