繁体   English   中英

创建web.config

[英]Creating web.config

我使用放置在IIS应用程序池中的Web服务创建了非常简单的ASP.NET网站。 端口和地址在IIS的站点设置中定义。 Web.config非常简单:

<configuration>
    <system.web>
      <compilation debug="true" targetFramework="4.5" />
      <httpRuntime targetFramework="4.5" />
    </system.web>

</configuration>

它甚至不包含有关服务的信息。

我查看了web.config其他示例,发现它们更大了:

<?xml version="1.0"?>
<configuration>
  <startup>
    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
  </startup>
  <system.serviceModel>
    <bindings>
      <webHttpBinding>
        <binding name="jsonHttp" />

      </webHttpBinding>
      <basicHttpBinding>
        <binding name="basicHttp"/>
      </basicHttpBinding>
    </bindings>
    <services>
      <service name="HelloDeviceCntrl.AaaComModule.AaaComModule">
        <endpoint address="http://localhost:8001/json/Aaacom/" binding="webHttpBinding" bindingConfiguration="jsonHttp" contract="HelloDeviceCntrl.AaaComModule.IAaaComModule" behaviorConfiguration="JsonEndpointBehaviour"/>
        <endpoint address="http://localhost:8001/basic/Aaacom/" binding="basicHttpBinding" behaviorConfiguration="DefaultEndpointBehaviour" contract="HelloDeviceCntrl.AaaComModule.IAaaComModule" />
      </service>
      <service name="HelloDeviceCntrl.BaaModule.BaaModule">
        <endpoint address="http://localhost:8001/json/Baa/" binding="webHttpBinding" bindingConfiguration="jsonHttp" behaviorConfiguration="JsonEndpointBehaviour" contract="HelloDeviceCntrl.BaaModule.IBaaModule"/>
        <endpoint address="http://localhost:8001/basic/Baa/" binding="basicHttpBinding" behaviorConfiguration="DefaultEndpointBehaviour" contract="HelloDeviceCntrl.BaaModule.IBaaModule"/>
      </service>
      <service name="HelloDeviceCntrl.ABCModule.ABCModule" behaviorConfiguration="ABCModuleServiceBehaviour">
        <endpoint address="http://localhost:8001/json/ABC/" binding="webHttpBinding" bindingConfiguration="jsonHttp" contract="HelloDeviceCntrl.ABCModule.IABCModule" behaviorConfiguration="JsonEndpointBehaviour"/>
        <endpoint address="http://localhost:8001/basic/ABC/" binding="basicHttpBinding" behaviorConfiguration="DefaultEndpointBehaviour" contract="HelloDeviceCntrl.ABCModule.IABCModule"/>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior>
          <!--<serviceMetadata httpGetEnabled="true" />-->
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
        <behavior name="ABCModuleServiceBehaviour">
          <dataContractSerializer maxItemsInObjectGraph="2147483647"/>
          <serviceMetadata httpGetEnabled="true" httpGetUrl="http://localhost:8001/ABC/get"/>
          <serviceDebug includeExceptionDetailInFaults="true"/>
        </behavior>
      </serviceBehaviors>
      <endpointBehaviors>
        <behavior name="JsonEndpointBehaviour">
          <webHttp defaultOutgoingResponseFormat="Json" defaultBodyStyle="Wrapped" faultExceptionEnabled="true" automaticFormatSelectionEnabled="true" />
        </behavior>
        <behavior name="DefaultEndpointBehaviour">
        </behavior>
      </endpointBehaviors>
    </behaviors>
    <serviceHostingEnvironment aspNetCompatibilityEnabled="true" />
  </system.serviceModel>
  <appBaa>
    <add key="anykey1" value="anyvalue1" />
    <add key="ClientBaaProvider.ServiceUri" value="" />
  </appBaa>
  <system.web>
    <membership defaultProvider="ClientAuthenticationMembershipProvider">
      <providers>
        <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, serviceUri="" />
      </providers>
    </membership>
    <roleManager defaultProvider="ClientRoleProvider" enabled="true">
      <providers>
        <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
      </providers>
    </roleManager>
  </system.web>
</configuration>

比较两个配置时,我遇到了几个问题。

为什么我的配置没有端口和地址信息? 我可以手动添加到web.config并重载网站设置中的现有值吗?

所有这些配置行应手动编辑还是根据某些项目设置附加?

据我所知,某些配置是根据项目设置附加的,而其他配置则是您自己添加的。 如果要使用具有特定地址和特定设置的certian端点,或者要使用签名或加密的服务。

IP地址和端口信息(称为站点绑定)由IIS(或其他使用它们的Web服务器)控制,因此您不会在web.config中看到它们(并且无法指定两者,因为IIS可以不允许您在此类服务器级别设置的网站或应用程序级别执行此操作)。

您粘贴的示例文件包含有关WCF设置的信息,这与您的情况几乎无关。 除非您非常了解WCF,否则不要以自己的方式解释这些设置,并假定ASP.NET的行为相同。 那只是您的误解,在任何情况下都应避免。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM