1 <?xml version=
"1.0" encoding=
"utf-8" ?>
6 name=
"Microsoft.ServiceModel.Samples.CalculatorService"
7 behaviorConfiguration=
"CalculatorServiceBehavior">
8 <!-- this endpoint is exposed at the base address provided by host: http://localhost/servicemodelsamples/service.svc -->
10 binding=
"wsHttpBinding"
11 contract=
"Microsoft.ServiceModel.Samples.ICalculator" />
12 <!-- the mex endpoint is exposed at http://localhost/servicemodelsamples/service.svc/mex -->
13 <endpoint address=
"mex"
14 binding=
"mexHttpBinding"
15 contract=
"IMetadataExchange" />
19 <!--For debugging purposes set the includeExceptionDetailInFaults attribute to true-->
22 <behavior name=
"CalculatorServiceBehavior">
23 <serviceMetadata httpGetEnabled=
"True"/>
24 <serviceDebug includeExceptionDetailInFaults=
"False" />
29 </system.serviceModel
>