有没有办法让多个ssl证书指向服务定义中的单个inputendpoint?例如,假设我有两个网址.
service.foo.net/Service.svc
service.doo.net/Service.svc
我希望这两个地址都解析为我的Windows Azure服务,但我不知道如何在服务定义中配置它.
<Certificates>
<Certificate name="service.foo.net" storeLocation="LocalMachine" storeName="My" />
<Certificate name="service.doo.net" storeLocation="LocalMachine" storeName="My" />
</Certificates>
<Endpoints>
<InputEndpoint name="HttpsIn" protocol="https" port="443" certificate="service.foo.net" />
</Endpoints>
Run Code Online (Sandbox Code Playgroud)
根据这篇MSDN文章,每个输入端点必须具有唯一的端口.有没有办法为此端点指定多个证书?