當我在訪問外表套上核心服務網址:http://tridion_ip/webservices/CoreService2011.svc
我得到一個運行時錯誤。我直接從CMS服務器訪問URL。如何在Tridion服務器上配置Tridion核心服務?
Could not find a base address that matches scheme https for the endpoint
當我看在IIS中,我可以看到/ Web服務/目錄顯示了以下核心服務文件:
- CoreService.svc
- CoreService2011.svc
- 的Web.config
我應該在該地址看到一個Web服務頁面嗎?還是這個預期的beavior?
編輯:出於對安全因素如下:
<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>
什麼運行時錯誤是你到底收到? – Puntero
您是否試過這個http://code.google.com/p/tridion-practice/wiki/GetCoreServiceClientWithConfigFile或此http://code.google.com/p/tridion-practice/wiki/GetCoreServiceClientWithoutConfigFile? –
tridion顯示通用運行時錯誤:'/ webservices'應用程序中的服務器錯誤。 運行時錯誤 描述:服務器上發生應用程序錯誤。此應用程序的當前自定義錯誤設置可防止遠程查看應用程序錯誤的細節(出於安全原因)。但是,它可以通過本地服務器上運行的瀏覽器來查看。 – Lucas