oop_AM-6/WebClient/WpfWebClient/App.config

18 lines
744 B
Plaintext
Raw Permalink Normal View History

2018-06-03 17:24:48 +02:00
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
</startup>
<system.serviceModel>
<bindings>
<basicHttpBinding>
2018-09-20 20:47:02 +02:00
<binding name="BasicHttpBinding_IService" maxBufferSize="64000000" maxReceivedMessageSize="64000000"/>
2018-06-03 17:24:48 +02:00
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:8000/Service.svc" binding="basicHttpBinding"
bindingConfiguration="BasicHttpBinding_IService" contract="ServiceReferenceEHEC.IService"
name="BasicHttpBinding_IService" />
</client>
</system.serviceModel>
</configuration>