-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServiceReferences.ClientConfig
26 lines (26 loc) · 1.26 KB
/
ServiceReferences.ClientConfig
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="BasicHttpBinding_IMentorJInfoService" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647">
<security mode="None" />
</binding>
<binding name="BasicHttpBinding_IMentorJProfileService" maxBufferSize="2147483647"
maxReceivedMessageSize="2147483647">
<security mode="None" />
</binding>
</basicHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:9607/MentorJService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IMentorJInfoService"
contract="IMentorJInfoService" name="BasicHttpBinding_IMentorJInfoService" />
<endpoint address="http://localhost:9607/MentorJService.svc"
binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IMentorJProfileService"
contract="IMentorJProfileService" name="BasicHttpBinding_IMentorJProfileService" />
</client>
<extensions />
</system.serviceModel>
</configuration>