在web.config中配置wcf rest服务

时间:2013-07-14 22:22:44

标签: wcf rest web-config

web.config中的以下代码块应该用于WCF RESTful服务吗?

<endpoint address="" binding="webHttpBinding"contract="Wcf_Test.IMyService"    
behaviorConfiguration="httpEndpointBehavour"> 
    <identity> 
        <dns value="localhost"/> 
    <Identity>  
</endpoint>

<behaviors>
    <serviceBehaviors> 
        <behavior name="httpBehaviour"> <serviceMetadata httpGetEnabled="True"/>
            <serviceDebug includeExceptionDetailInFaults="False"/>
        </behavior>
    </serviceBehaviors>

    <endpointBehaviors> 
        <behavior name="httpEndpointBehavour"> 
            <webHttp />
        </behavior> 
    </endpointBehaviors>
</behaviors>

3 个答案:

答案 0 :(得分:27)

要配置WCF REST服务,您需要在web.config文件中进行一些操作

1)声明您的服务及其端点

<services>
  <service name="SparqlService.SparqlService" behaviorConfiguration="ServiceBehavior">
    <endpoint binding="webHttpBinding" contract="SparqlService.ISparqlService"
              behaviorConfiguration="webHttp"/>
  </service>
</services>

服务名称为[项目名称]。[服务名称] 行为配置将与您在下一步中声明的行为相同 绑定必须是webHttpBinding,因为您希望它作为REST。如果需要SOAP,则声明为basicHttpBinding 合同是[项目名称]。[接口名称] 端点中的行为配置将是您在下一步中声明的名称

2)声明服务行为(通常是默认值)

    <behavior name="ServiceBehavior" >
      <serviceMetadata httpGetEnabled="true" />
      <serviceDebug includeExceptionDetailInFaults="false" />
    </behavior>

行为名称可以是任何内容,但它将用于匹配您在步骤1中声明的BehaviorConfiguration 剩下的就是

3)声明您的终端行为

  <endpointBehaviors>
    <behavior name="webHttp">
      <webHttp/>
    </behavior>
  </endpointBehaviors>

行为名称可以是任何名称,但它将用于匹配端点中的behaviorConfiguration。

最后,这就是web.config对于简单的REST服务应该是什么样子:

<?xml version="1.0"?>
<configuration>

  <system.web>
    <compilation debug="true" targetFramework="4.0" />
  </system.web>
  <system.serviceModel>

    <services>
      <service name="SparqlService.SparqlService" behaviorConfiguration="ServiceBehavior">
        <endpoint binding="webHttpBinding" contract="SparqlService.ISparqlService"
                  behaviorConfiguration="webHttp"/>
      </service>
    </services>

    <behaviors>
      <serviceBehaviors>

        <behavior name="ServiceBehavior" >
          <serviceMetadata httpGetEnabled="true" />
          <serviceDebug includeExceptionDetailInFaults="false" />
        </behavior>


        <behavior>
          <!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="true"/>
          <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="false"/>
        </behavior>
      </serviceBehaviors>

      <endpointBehaviors>
        <behavior name="webHttp">
          <webHttp/>
        </behavior>
      </endpointBehaviors>

    </behaviors>
  </system.serviceModel>
  <system.webServer>
    <modules runAllManagedModulesForAllRequests="true"/>
  </system.webServer>

</configuration>

答案 1 :(得分:1)

使用WCFservice

的其余类型
<configuration>
    <system.serviceModel> 
       <services> 
          <service>
    <--
       "place the first code snippet here "
        it will contain the endpoint details
        for WCFrestfulServices it will have 'A' ,'B' and 'C'
        that is address, binding and contract
    -->
          </service>
       </services>
       <behaviors>
       <servicebehaviours>
    <--
       "place the second code snippet"
       the name of the behavior should be the same to that of the
       behavior configuration attribute value of service tag
    -->
      </servicebehaviours>
      <endpointBehaviors>
    <--
       "place your third code snippet"
       the name of the behavior should be the same to that of the
       behavior configuration attribute value of endpoint tag
    -->
      </endpointBehaviors>
       </behaviors>
    </system.serviceModel> 
</configuration>

答案 2 :(得分:0)

Web配置更改。

<system.serviceModel>
    <services>
      <service name="WcfService1.Service1">
        <endpoint address="" behaviorConfiguration="restbehavior" binding="webHttpBinding" bindingConfiguration=""
                  contract ="WcfService1.IBookService">          
        </endpoint>
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost/bookservice"/>
          </baseAddresses>
        </host>                
      </service>
    </services>
    <behaviors>
      <endpointBehaviors>
        <behavior name="restbehavior">
          <webHttp/>
        </behavior>
      </endpointBehaviors>
    </behaviors>   
  </system.serviceModel>

接口:我们必须使用WebGet for httpGet / WebInvoke for HttpPost&amp;放&amp;删除。

 [ServiceContract]
    public interface IBookService
    {
        [OperationContract]
        [WebGet]
        List<BOOK> GetBooksList();

        [OperationContract]
        [WebGet(UriTemplate = "Book/{id}")]
        BOOK GetBookById(string id);

        [OperationContract]
        [WebInvoke(UriTemplate = "AddBook/{name}")]
        void AddBook(string name);
}

参考:https://www.codeproject.com/Articles/571813/A-Beginners-Tutorial-on-Creating-WCF-REST-Services

相关问题