我能够在本地服务结构集群中运行无状态服务.但是,当我添加https端点时,激活失败.
我做了以下更改:
ServiceManifest.xml:
<Endpoint Name="ServiceEndpoint" Type="Input" Protocol="https" Port="443" CertificateRef="my_api_cert" />
Run Code Online (Sandbox Code Playgroud)
ApplicationManifest.xml:
<Policies>
<EndpointBindingPolicy EndpointRef="ServiceEndpoint" CertificateRef="my_api_cert" />
</Policies>
<Certificates>
<EndpointCertificate X509FindValue="[Api_SslCertHash]" Name="my_api_cert" />
</Certificates>
Run Code Online (Sandbox Code Playgroud)
我已将新创建的证书上传到Local Machine\My store.
我在集群管理器中收到以下错误:
错误事件:SourceId ='System.Hosting',Property ='Activation:1.0:1.0'.激活期间出错.
这个问题的解决方案是什么?
我们需要在没有任何用户交互的情况下静默安装SQL Server Express 2012.
有人可以请我参考任何在线文档来做到这一点吗?
提前致谢.