1 <?xml version=
"1.0" encoding=
"utf-8" ?>
6 <behavior name=
"metadataBehavior" >
8 <serviceDebug httpHelpPageEnabled=
"false" httpsHelpPageEnabled=
"false" />
15 <!-- The echo service uses a WSHttpBinding with no WS-ReliableMessaging or WS-Security. -->
16 <binding name=
"ServiceBinding">
17 <reliableSession enabled=
"false" />
18 <security mode=
"None" />
24 <service name=
"Microsoft.ServiceModel.Samples.EchoService" behaviorConfiguration=
"metadataBehavior">
26 <!-- An HTTP base address serves the application endpoint as well as the WS-MetadataExchage one. -->
28 <add baseAddress=
"http://localhost:8000/echo" />
31 <!-- Echo service application endpoint. -->
32 <endpoint address=
"http://localhost:8000/services/soap12/text"
34 contract=
"Microsoft.ServiceModel.Samples.IEchoService"
35 binding=
"wsHttpBinding"
36 bindingConfiguration=
"ServiceBinding" />
37 <!-- Echo service metadata endpoint. -->
38 <endpoint address=
"mex"
39 contract=
"IMetadataExchange"
40 binding=
"mexHttpBinding" />
43 </system.serviceModel
>