Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <appSettings>
  4. <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
  5. </appSettings>
  6. <system.web>
  7. <compilation debug="true" />
  8. </system.web>
  9. <system.serviceModel>
  10. <services>
  11. <service name="MwWcfLibrary.Service">
  12.  
  13. <endpoint address="net.tcp://localhost:8733"
  14. binding="netTcpBinding"
  15. bindingConfiguration=""
  16. bindingName="Action"
  17. name="ActionInterface"
  18. contract="MwWcfLibrary.Actions.Interfaces.IAction">
  19. <identity>
  20. <dns value="localhost" />
  21. </identity>
  22. </endpoint>
  23. <endpoint address="mex"
  24. binding="mexTcpBinding"
  25. bindingConfiguration=""
  26. name="Mex"
  27. contract="IMetadataExchange" >
  28. <identity>
  29. <dns value="localhost" />
  30. </identity>
  31. </endpoint>
  32. <endpoint binding="netTcpBinding"
  33. address="net.tcp://localhost:8733"
  34. bindingConfiguration=""
  35. name="LifeSignInterface"
  36. bindingName="LifeSign"
  37. contract="MwWcfLibrary.LifeSign.Interfaces.ILifeSign" >
  38. <identity>
  39. <dns value="localhost" />
  40. </identity>
  41. </endpoint>
  42. <endpoint binding="netTcpBinding"
  43. address="net.tcp://localhost:8733"
  44. bindingConfiguration=""
  45. name="DataInterface"
  46. bindingName="Data"
  47. contract="MwWcfLibrary.Notification.Interfaces.IData">
  48. <identity>
  49. <dns value="localhost" />
  50. </identity>
  51. </endpoint>
  52. <endpoint binding="netTcpBinding"
  53. address="net.tcp://localhost:8733"
  54. bindingConfiguration=""
  55. name="PublicDataInterface"
  56. bindingName="PublicData"
  57. contract="MwWcfLibrary.PublicData.Interfaces.IPublicData" >
  58. <identity>
  59. <dns value="localhost" />
  60. </identity>
  61. </endpoint>
  62. <endpoint binding="netTcpBinding"
  63. address="net.tcp://localhost:8733"
  64. bindingConfiguration=""
  65. name="PublicStateInterface"
  66. bindingName="PublicState"
  67. contract="MwWcfLibrary.PublicState.Interfaces.IPublicState" >
  68. <identity>
  69. <dns value="localhost" />
  70. </identity>
  71. </endpoint>
  72.  
  73. <host>
  74. <baseAddresses>
  75. <add baseAddress="net.tcp://localhost:8733//MwWcfLibrary" />
  76. </baseAddresses>
  77. <timeouts closeTimeout="00:00:30" />
  78. </host>
  79. </service>
  80. </services>
  81. <behaviors>
  82. <serviceBehaviors>
  83. <behavior name="">
  84. <serviceMetadata httpGetEnabled="false" httpsGetEnabled="false" />
  85. <serviceDebug includeExceptionDetailInFaults="false" />
  86. </behavior>
  87. </serviceBehaviors>
  88. </behaviors>
  89. </system.serviceModel>
  90. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement