| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?xml version="1.0" encoding="utf-8" ?>
- <configuration>
- <runtime>
- <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
- <probing privatePath="lib"/>
- </assemblyBinding>
- </runtime>
- <system.serviceModel>
- <behaviors>
- <endpointBehaviors>
- <behavior name="endpointBehavior_"></behavior>
- </endpointBehaviors>
- </behaviors>
- <bindings>
- <wsHttpBinding>
- <binding name="binding_wsHttp"
- closeTimeout="00:00:30"
- openTimeout="00:00:30"
- receiveTimeout="10:00:00"
- sendTimeout="10:00:00"
- maxReceivedMessageSize="2147483647">
- <security mode="None">
- <transport clientCredentialType="None" />
- <message clientCredentialType="None" />
- </security>
- </binding>
- </wsHttpBinding>
- </bindings>
- <client>
- <endpoint address=""
- behaviorConfiguration="endpointBehavior_"
- binding="wsHttpBinding"
- bindingConfiguration="binding_wsHttp"
- contract="SmartDeviceService.ISmartDevice"
- name="endpoint_SmartDevice" />
- </client>
- </system.serviceModel>
- </configuration>
|