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 -->
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" />
18 <!--For debugging purposes set the includeExceptionDetailInFaults attribute to true-->
21 <behavior name=
"WeatherServiceBehavior">
22 <serviceMetadata httpGetEnabled=
"True"/>
23 <serviceDebug includeExceptionDetailInFaults=
"False" />
28 </system.serviceModel
>