如何在Tridion服务器上配置Tridion核心服务?

Luc*_*cas 6 configuration wcf wcf-binding tridion

当我访问Tridion核心服务URL时:http://tridion_ip/webservices/CoreService2011.svc我收到运行时错误.我直接从CMS服务器访问URL.

找不到与端点的方案https匹配的基址

当我查看IIS时,我可以看到/ webservices /目录显示以下Core Service文件:

  • CoreService.svc
  • CoreService2011.svc
  • Web.config文件

我应该在该地址看到一个Web服务页面吗?或者这是预期的?

编辑: Out安全元素如下:

<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>
Run Code Online (Sandbox Code Playgroud)

She*_*ras 5

检查IIS中的Web服务.这应该是应用程序并检查您的web.config安装服务的位置.

可能你正面临多重网站托管问题

将此行放在webconfig中,如果它已经存在,则替换为旧行

<serviceHostingEnvironment aspNetCompatibilityEnabled="true" 
                           multipleSiteBindingsEnabled="true"/>
Run Code Online (Sandbox Code Playgroud)