-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config
54 lines (51 loc) · 2.92 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="wsi" maxReceivedMessageSize="1000000">
<security>
<transport>
<extendedProtectionPolicy policyEnforcement="Never" />
</transport>
</security>
</binding>
</basicHttpBinding>
<wsHttpBinding>
<binding name="ws" maxReceivedMessageSize="1000000">
<readerQuotas maxStringContentLength="500000000" maxArrayLength="100000"
maxBytesPerRead="500000000" maxNameTableCharCount="500000000" />
<security>
<transport>
<extendedProtectionPolicy policyEnforcement="Never" />
</transport>
<message clientCredentialType="UserName" />
</security>
</binding>
</wsHttpBinding>
</bindings>
<client>
<endpoint address="http://localhost:52442/MSDNVideoServices.svc/ws"
binding="wsHttpBinding" bindingConfiguration="ws" contract="MSDNVideoServices.IMSDNVideoServices"
name="ws">
<identity>
<certificate encodedValue="AwAAAAEAAAAUAAAAnCmv/ModRW8MFsWZSVfdfUbYmcwgAAAAAQAAAAYCAAAwggICMIIBa6ADAgECAhA4k8r2LFt6k0eHG6G1bSAyMA0GCSqGSIb3DQEBBAUAMBgxFjAUBgNVBAMTDU1TRE5WaWRlb0NlcnQwHhcNMDcwODIwMTUxODI4WhcNMzkxMjMxMjM1OTU5WjAYMRYwFAYDVQQDEw1NU0ROVmlkZW9DZXJ0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDcO5Kv+ZFoZqs8m4mXO8vuUcFi8yimoo9M7dZAXxrg+omPJo0wZFBs/9KcFrUBxSOCXXQ5jlJ+FrKj7Z+KuPVkQPuMQRO4YofOXXijnSYg6B5lXeG95coL53oAdgLj6yewMFJElLDTSWC3g/vH34uMmwxrAhbv3bNuBslBTBOf4QIDAQABo00wSzBJBgNVHQEEQjBAgBA0pHgn+EZznVZE8WdFfLXPoRowGDEWMBQGA1UEAxMNTVNETlZpZGVvQ2VydIIQOJPK9ixbepNHhxuhtW0gMjANBgkqhkiG9w0BAQQFAAOBgQBD324G0T3pMj8BH8+kgsuq9UvnRzke29R0Yp3yHEZbBB+xnmNBt1vxM+vFrbjF3cas68vsALc5JRX/o9pmf2Am04/ysVzdW8K1plZYn2L+gNA0QCpyEC9MEaiY758HYhITEpTWyE7+apJ5SId135k8zcCHeWKzhMzSHuT9Zo50YQ==" />
</identity>
</endpoint>
<endpoint address="http://localhost:52442/MSDNVideoServices.svc"
binding="basicHttpBinding" bindingConfiguration="wsi" contract="MSDNVideoServices.IMSDNVideoServices"
name="wsi" />
</client>
<behaviors>
<endpointBehaviors>
<behavior name="behave">
<clientCredentials>
<serviceCertificate>
<authentication certificateValidationMode="PeerOrChainTrust"/>
</serviceCertificate>
</clientCredentials>
</behavior>
</endpointBehaviors>
</behaviors>
</system.serviceModel>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/></startup></configuration>