1 <?xml version=
"1.0" encoding=
"utf-8" ?>
6 <service name=
"Microsoft.ServiceModel.Samples.CalculatorService"
7 behaviorConfiguration=
"CalculatorServiceBehavior">
10 <add baseAddress=
"http://localhost:8000/ServiceModelSamples/service"/>
13 <!-- this endpoint is exposed at the base address provided by host: http://localhost:8000/ServiceModelSamples/service -->
15 binding=
"wsHttpBinding"
16 contract=
"Microsoft.ServiceModel.Samples.IOneWayCalculator" />
17 <!-- the mex endpoint is exposed at http://localhost:8000/ServiceModelSamples/service/mex -->
18 <endpoint address=
"mex"
19 binding=
"mexHttpBinding"
20 contract=
"IMetadataExchange" />
24 <!--For debugging purposes set the includeExceptionDetailInFaults attribute to true-->
27 <behavior name=
"CalculatorServiceBehavior">
28 <serviceMetadata httpGetEnabled=
"True"/>
29 <serviceDebug includeExceptionDetailInFaults=
"False" />
33 </system.serviceModel
>