Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Rx/NET/Samples/HOL/CS/Excercise7/Step07/app.config')
-rw-r--r--Rx/NET/Samples/HOL/CS/Excercise7/Step07/app.config46
1 files changed, 46 insertions, 0 deletions
diff --git a/Rx/NET/Samples/HOL/CS/Excercise7/Step07/app.config b/Rx/NET/Samples/HOL/CS/Excercise7/Step07/app.config
new file mode 100644
index 0000000..cf1770f
--- /dev/null
+++ b/Rx/NET/Samples/HOL/CS/Excercise7/Step07/app.config
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<configuration>
+ <system.serviceModel>
+ <bindings>
+ <basicHttpBinding>
+ <binding name="DictServiceSoap" closeTimeout="00:01:00" openTimeout="00:01:00"
+ receiveTimeout="00:10:00" sendTimeout="00:01:00" allowCookies="false"
+ bypassProxyOnLocal="false" hostNameComparisonMode="StrongWildcard"
+ maxBufferSize="65536" maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
+ messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
+ useDefaultWebProxy="true">
+ <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
+ maxBytesPerRead="4096" maxNameTableCharCount="16384" />
+ <security mode="None">
+ <transport clientCredentialType="None" proxyCredentialType="None"
+ realm="" />
+ <message clientCredentialType="UserName" algorithmSuite="Default" />
+ </security>
+ </binding>
+ </basicHttpBinding>
+ <customBinding>
+ <binding name="DictServiceSoap12">
+ <textMessageEncoding maxReadPoolSize="64" maxWritePoolSize="16"
+ messageVersion="Soap12" writeEncoding="utf-8">
+ <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
+ maxBytesPerRead="4096" maxNameTableCharCount="16384" />
+ </textMessageEncoding>
+ <httpTransport manualAddressing="false" maxBufferPoolSize="524288"
+ maxReceivedMessageSize="65536" allowCookies="false" authenticationScheme="Anonymous"
+ bypassProxyOnLocal="false" decompressionEnabled="true" hostNameComparisonMode="StrongWildcard"
+ keepAliveEnabled="true" maxBufferSize="65536" proxyAuthenticationScheme="Anonymous"
+ realm="" transferMode="Buffered" unsafeConnectionNtlmAuthentication="false"
+ useDefaultWebProxy="true" />
+ </binding>
+ </customBinding>
+ </bindings>
+ <client>
+ <endpoint address="http://services.aonaware.com/DictService/DictService.asmx"
+ binding="basicHttpBinding" bindingConfiguration="DictServiceSoap"
+ contract="DictionarySuggestService.DictServiceSoap" name="DictServiceSoap" />
+ <endpoint address="http://services.aonaware.com/DictService/DictService.asmx"
+ binding="customBinding" bindingConfiguration="DictServiceSoap12"
+ contract="DictionarySuggestService.DictServiceSoap" name="DictServiceSoap12" />
+ </client>
+ </system.serviceModel>
+</configuration> \ No newline at end of file