-
-
Notifications
You must be signed in to change notification settings - Fork 344
Expand file tree
/
Copy pathApp.config
More file actions
18 lines (18 loc) · 693 Bytes
/
App.config
File metadata and controls
18 lines (18 loc) · 693 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="DictServiceSoap" />
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://services.aonaware.com/DictService/DictService.asmx"
binding="basicHttpBinding" bindingConfiguration="DictServiceSoap"
contract="DictService.DictServiceSoap" name="DictServiceSoap" />
</client>
</system.serviceModel>
</configuration>