zoukankan      html  css  js  c++  java
  • wcf通过webHttpBinding方式发布rest web服务

     1   <system.serviceModel>
     2     <services>
     3 
     4       <service name="ServiceUpdater.ServiceUpdate" behaviorConfiguration="http" >
     5         <host>
     6           <baseAddresses>
     7             <add baseAddress="http://localhost:7777/Updater"/>
     8           </baseAddresses>
     9         </host>
    10         <endpoint binding="webHttpBinding" contract="ServiceUpdater.IServiceUpdate" behaviorConfiguration="web"></endpoint>
    11       </service>
    12     </services>
    13 
    14     <behaviors>
    15       <serviceBehaviors>
    16         <behavior name="mex">
    17           <serviceMetadata/>
    18         </behavior>
    19         <behavior name="http">
    20           <serviceMetadata httpGetEnabled="true"/>
    21           <serviceDebug includeExceptionDetailInFaults="true"  httpHelpPageEnabled="true"/>
    22         </behavior>
    23       </serviceBehaviors>
    24       <endpointBehaviors>
    25         <behavior name="web">
    26           <webHttp helpEnabled="true"/>
    27         </behavior>
    28       </endpointBehaviors>
    29     </behaviors>
    30   </system.serviceModel>

    wcf通过webHttpBinding方式发布rest web服务

  • 相关阅读:
    第三次上机练习
    第三次作业
    第二次上级练习
    第二次作业
    第一次上机练习
    第一次作业
    4.20
    4.16
    4.10
    4.9
  • 原文地址:https://www.cnblogs.com/jonney-wang/p/5723746.html
Copyright © 2011-2022 走看看