2

我正在寻找为配置了 a<ServiceBehavior>而不是a 的 WCF 服务启用生成的帮助页面<EndpointBehavior>。我的 95% 的搜索结果都与我的搜索结果有关,<EndpointBehavior>而我所找到的搜索结果<ServiceBehavior>要么没有答案,要么缺乏细节,要么似乎根本不起作用。

我不是托管在 IIS 上的此服务的创建者,但我的任务是为该服务启用帮助页面。根据我的发现,我应该能够简单地启用httpHelpPageEnabledServiceDebug 元素下的属性,但这没有任何作用,并且httpHelpPageUrl在浏览器中查看时会破坏整个服务。

配置:无论如何都是相关的部分。

<system.serviceModel>  
  <serviceHostingEnvironment aspNetCompatibilityEnabled="false" multipleSiteBindingsEnabled="true" />
  <bindings>
    <basicHttpBinding>
      <binding name="serviceBinding">
        <security mode="None">
        </security>
      </binding>
    </basicHttpBinding>
    <wsHttpBinding>
      <binding name="serviceWsBinding">
        <security mode="None">
        </security>
      </binding>
    </wsHttpBinding>
  </bindings>
  <client />
  <services>
    <service behaviorConfiguration="ServiceBehavior" name="ServicesLib.Service">
      <endpoint listenUri="soap" name="soap" address="http://servicesdev.mySite.com/services/Service.svc/soap" binding="basicHttpBinding" bindingConfiguration="serviceBinding" contract="ServicesLib.IService" />
      <endpoint listenUri="soap12" name="soap12" address="http://servicesdev.mySite.com/services/Service.svc/soap12" binding="wsHttpBinding" bindingConfiguration="serviceWsBinding" contract="ServicesLib.IService" />
      <host>
        <baseAddresses>
          <add baseAddress="http://servicesdev.mySite.com/services" />
        </baseAddresses>
      </host>
    </service>
  </services>
  <behaviors>
    <!-- These EndpointBehaviors aren't used, they are just here :? -->
    <endpointBehaviors>
      <behavior name="restBehavior">
        <webHttp />
      </behavior>
      <behavior name="soapBehavior">
        <webHttp helpEnabled="true" />
      </behavior>
    </endpointBehaviors>
    <serviceBehaviors>
      <behavior name="ServiceBehavior">
        <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" externalMetadataLocation="../Services.wsdl" />
        <serviceDebug includeExceptionDetailInFaults="true" httpHelpPageEnabled="true" />
      </behavior>
    </serviceBehaviors>
  </behaviors>
</system.serviceModel>

如果出于某种原因这不是正确的方法,也许有人可以指出我托管自定义帮助页面的正确方向?我一直在阅读这篇关于从 Windows 服务托管一个解决方案的帖子,但我不确定如何将其添加到 WCF 服务中,该服务将以相同的方式与服务一起托管。

4

2 回答 2

1

ServiceDebugElementHttpHelpPageEnabledHttpHelpPageUrl属性提供了一种启用自定义帮助页面的机制。但是,这些属性不会自动告诉服务器生成自定义页面。为了提供您自己的自定义帮助内容,您需要为静态 html 帮助页面或返回自定义帮助页面的端点提供 URL(如您引用的文章中所述)。
问候,

于 2014-01-28T22:21:29.457 回答
0
<endpoint listenUri="soap" name="soap" address="http://servicesdev.mySite.com/services/Service.svc/soap" binding="basicHttpBinding" bindingConfiguration="serviceBinding" contract="ServicesLib.IService" behaviorConfiguration="restBehavior" />
      <endpoint listenUri="soap12" name="soap12" address="http://servicesdev.mySite.com/services/Service.svc/soap12" binding="wsHttpBinding" bindingConfiguration="serbviceWsBinding" contract="ServicesLib.IService" behaviorConfiguration="soapBehavior" />

    <endpointBehaviors>  
          <behavior name="restBehavior">
            <webHttp helpEnabled="true"/>
          </behavior>
          <behavior name="soapBehavior">
            <webHttp helpEnabled="true" />
          </behavior>
    </endpointBehaviors>
于 2014-01-28T22:20:51.797 回答