当我在以下位置访问 Tridion 核心服务 URL 时:http://tridion_ip/webservices/CoreService2011.svc
我收到运行时错误。我直接从 CMS 服务器访问 URL。
找不到与端点方案 https 匹配的基地址
当我查看 IIS 时,我可以看到 /webservices/ 目录显示以下核心服务文件:
- 核心服务.svc
- CoreService2011.svc
- 网页配置
我应该在该地址看到 Web 服务页面吗?还是这是预期的行为?
编辑:出安全元素如下:
<wsHttpBinding>
<binding name="CoreService_wsHttpBinding" transactionFlow="true" maxReceivedMessageSize="10485760">
<readerQuotas maxStringContentLength="10485760" maxArrayLength="10485760" />
<!--
<security mode="Message">
<message clientCredentialType="Windows" />
</security>
-->
<!-- For LDAP authentication of message credentials, use the following settings: -->
<security mode="TransportWithMessageCredential">
<message clientCredentialType="UserName" />
</security>
</binding>