我正在寻找为配置了 a<ServiceBehavior>
而不是a 的 WCF 服务启用生成的帮助页面<EndpointBehavior>
。我的 95% 的搜索结果都与我的搜索结果有关,<EndpointBehavior>
而我所找到的搜索结果<ServiceBehavior>
要么没有答案,要么缺乏细节,要么似乎根本不起作用。
我不是托管在 IIS 上的此服务的创建者,但我的任务是为该服务启用帮助页面。根据我的发现,我应该能够简单地启用httpHelpPageEnabled
ServiceDebug 元素下的属性,但这没有任何作用,并且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 服务中,该服务将以相同的方式与服务一起托管。