Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. <xml version = "1.0" encoding = "utf-8"?>
  2. <configuration>
  3. <system.serviceModel>
  4. <bindings>
  5. <netTcpBinding>
  6. ***<binding name="NetTcpBinding_IServicioOracle" />***
  7. </netTcpBinding>
  8. </bindings>
  9. <client>
  10. <endpoint address = "net tcp://localhost/Service.svc".
  11. binding = "netTcpBinding" bindingConfiguration = "NetTcpBinding_IServicioOracle"
  12. contract = "Servicio.IServicioOracle" name = "NetTcpBinding_IServicioOracle">
  13. <identity>
  14. <dns value="localhost" />
  15. </identity>
  16. </endpoint>
  17. </client>
  18. </system.serviceModel>
  19. </configuration>
  20.  
  21. <xml version = "1.0" encoding = "utf-8"?>
  22. <configuration>
  23. <system.serviceModel>
  24. <bindings>
  25. <netTcpBinding>
  26. ***<binding name = "NetTcpBinding_IServicioOracle" closeTimeout = "00: 01:00"
  27. openTimeout = "00: 01:00" receiveTimeout = "00:00" P:System.NET.Sockets.TcpClient.SendTimeout = "00: 01:00"
  28. transactionFlow = "false" transferMode = "Buffered" transactionProtocol = 'OleTransactions'
  29. hostNameComparisonMode = "StrongWildcard" listenBacklog = "10"
  30. maxBufferPoolSize = "524288" maxBufferSize ="65536" maxConnections = "10"
  31. maxReceivedMessageSize = "65536">
  32. <readerQuotas maxDepth = "32" maxStringContentLength ="8192" maxArrayLength = "16384"
  33. maxBytesPerRead = "4096" maxNameTableCharCount ="16384" />
  34. <reliableSession ordered = "true" inactivityTimeout = "00:00"
  35. enabled = "false" />
  36. <security mode="Transport">
  37. <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
  38. <message clientCredentialType="Windows" />
  39. </security>
  40. </binding>***
  41. </netTcpBinding>
  42. </bindings>
  43. <client>
  44. <endpoint address = "net tcp://localhost/Service.svc".
  45. binding = "netTcpBinding" bindingConfiguration = "NetTcpBinding_IServicioOracle"
  46. contract = "IServicioOracle" name = "NetTcpBinding_IServicioOracle">
  47. <identity>
  48. <dns value="localhost" />
  49. </identity>
  50. </endpoint>
  51. </client>
  52. </system.serviceModel>
  53. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement