| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | <?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>
 |