oop_II-6/Client/App.config

41 lines
1.7 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IServerService" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:58304/ServerService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IServerService"
contract="ServiceReference1.IServerService" name="BasicHttpBinding_IServerService" />
</client>
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<services>
<service name="Client.EHECService">
<endpoint address="" binding="basicHttpBinding" contract="Client.IEHECService">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8733/Design_Time_Addresses/Client/EHECService/" />
</baseAddresses>
</host>
</service>
</services>
</system.serviceModel>
</configuration>