-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.config
29 lines (29 loc) · 1.29 KB
/
App.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<!-- PROVIDE PROXY CREDENTIALS/ADDRESS HERE! -->
<add key="user" value="[user]"/>
<add key="password" value="[password]"/>
<add key="address" value="http://[proxyaddress]:[port]"/>
<!-- PROVIDE PROXY CREDENTIALS/ADDRESS HERE! -->
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
</startup>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="Default" maxReceivedMessageSize="2147483647"/>
<binding name="Mtom" messageEncoding="Mtom" maxReceivedMessageSize="2147483647"/>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://facade-ch02.picturepark.com/ExtendedPublicService.svc"
binding="basicHttpBinding" bindingConfiguration="Default"
contract="PP_SOAP_Service.IExtendedPublicService" name="Default" />
<endpoint address="http://facade-ch02.picturepark.com/ExtendedPublicService.svc/Mtom"
binding="basicHttpBinding" bindingConfiguration="Mtom" contract="PP_SOAP_Service.IExtendedPublicService"
name="Mtom" />
</client>
</system.serviceModel>
</configuration>