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

相关文章:

  • 2021-09-27
  • 2022-12-23
  • 2022-12-23
  • 2021-09-27
  • 2021-11-13
  • 2022-02-01
猜你喜欢
  • 2022-12-23
  • 2021-06-15
  • 2022-12-23
  • 2021-12-01
  • 2022-02-19
  • 2021-07-04
  • 2022-12-23
相关资源
相似解决方案