Tridion Core Service URL にアクセスすると:http://tridion_ip/webservices/CoreService2011.svc
ランタイム エラーが発生します。CMS サーバーから直接 URL にアクセスしています。
エンドポイントのスキーム https に一致するベース アドレスが見つかりませんでした
IIS を見ると、/webservices/ ディレクトリに次のコア サービス ファイルが表示されていることがわかります。
- CoreService.svc
- CoreService2011.svc
- Web.config
そのアドレスで 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>