added samples
[windows-sources.git] / sdk / samples / WCFSamples / TechnologySamples / Scenario / DataBinding / WebForms / VB / service / Web.config
blob2774105d0f01f8b3c75dd8ef5da00ccf0ebb419f
1 <?xml version="1.0"?>
2 <configuration>
3 <system.serviceModel>
4 <services>
5 <service name="Microsoft.ServiceModel.Samples.WeatherService"
6 behaviorConfiguration="WeatherServiceBehavior">
7 <!-- This endpoint is exposed at the base address provided by host: http://localhost/servicemodelsamples/service.svc -->
8 <endpoint address=""
9 binding="wsHttpBinding"
10 contract="Microsoft.ServiceModel.Samples.IWeatherService"/>
11 <!-- the mex endpoint is exposed at http://localhost/servicemodelsamples/service.svc/mex -->
12 <endpoint address="mex"
13 binding="mexHttpBinding"
14 contract="IMetadataExchange" />
15 </service>
16 </services>
18 <!--For debugging purposes set the includeExceptionDetailInFaults attribute to true-->
19 <behaviors>
20 <serviceBehaviors>
21 <behavior name="WeatherServiceBehavior">
22 <serviceMetadata httpGetEnabled="True"/>
23 <serviceDebug includeExceptionDetailInFaults="False" />
24 </behavior>
25 </serviceBehaviors>
26 </behaviors>
28 </system.serviceModel>
30 </configuration>