0

我需要在我的 web.config 文件中添加一个“serviceactivation”元素。但是,我在网络上的任何地方都找不到这 4 个枚举的含义以及哪个枚举用于“添加服务=”。

这是每个枚举的 web.config 中的代码。如何确定使用哪一个?

<system.serviceModel>
    <serviceHostingEnvironment minFreeMemoryPercentageToActivateService="0">
      <serviceActivations>
        <add service="System.Web.ApplicationServices.AuthenticationService" relativeAddress="http://yeagertech.com/yeagerte/YeagerTechWcfService.YeagerTechWcfService.svc"/>
      </serviceActivations>
    </serviceHostingEnvironment>

NLog.LogReceiverService.LogReceiverForwardingService
System.Web.ApplicationServices.AuthenticationService
System.Web.ApplicationServices.ProfileService
System.Web.ApplicationServices.RoleService
4

1 回答 1

1

您应该将其设置为实现您的服务的类。我在这里展示了如何使用此设置的示例。

http://rickrainey.com/2013/08/30/hosting-a-wcf-service-in-an-azure-web-role-with-http-tcp-endpoints/

于 2013-09-08T04:32:46.010 回答