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服务

  • 相关阅读:
    HDU 5795
    HDU5783
    HDU 5791
    VK Cup 2016
    Codeforces Round #357 (Div. 2)
    Educational Codeforces Round 15
    HDU5724
    博弈学习 3
    Spring的多配置文件加载
    spring 核心技术
  • 原文地址:https://www.cnblogs.com/jonney-wang/p/5723746.html
Copyright © 2011-2022 走看看