webHttpBinding.config 829 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <system.serviceModel>
  4. <bindings>
  5. <webHttpBinding>
  6. <binding name="WebHttpBinding1_Service"
  7. allowCookies="true"
  8. bypassProxyOnLocal="true"
  9. hostNameComparisonMode="Exact"
  10. maxBufferPoolSize="262144"
  11. maxBufferSize="32768"
  12. maxReceivedMessageSize="16384"
  13. proxyAddress="proxy"
  14. writeEncoding="unicode"
  15. transferMode="Streamed">
  16. <security mode="TransportCredentialOnly">
  17. <transport
  18. clientCredentialType="Basic"
  19. proxyCredentialType="Ntlm"
  20. realm="realm" />
  21. </security>
  22. </binding>
  23. </webHttpBinding>
  24. </bindings>
  25. </system.serviceModel>
  26. </configuration>