Guest User

Untitled

a guest
Aug 13th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.12 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <section name="DatabaseConfig" type="MSO.ErrorSystem.Services.DatabaseConfigurationSection, MSO.ErrorSystem.Services" />
  5. <section name="DomainConfig" type="MSO.ErrorSystem.Services.DomainConfigurationSection, MSO.ErrorSystem.Services" />
  6. <section name="log4net" type="log4net.Config.Log4NetConfigurationSecionHandler, log4net" />
  7. </configSections>
  8. <startup>
  9. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  10. </startup>
  11. <system.serviceModel>
  12. <behaviors>
  13. <serviceBehaviors>
  14. <behavior name="">
  15. <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
  16. <serviceDebug includeExceptionDetailInFaults="true" />
  17. <dataContractSerializer maxItemsInObjectGraph="2147483647" />
  18. </behavior>
  19. </serviceBehaviors>
  20. </behaviors>
  21. <services>
  22. <service name="MSO.ErrorSystem.Services.ReportingService">
  23. <endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpEndpointBinding"
  24. contract="MSO.ErrorSystem.Services.IReportingService" />
  25. <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  26. <host>
  27. <baseAddresses>
  28. <add baseAddress="http://localhost:666/ReportingService/" />
  29. </baseAddresses>
  30. </host>
  31. </service>
  32. <service name="MSO.ErrorSystem.Services.CommunityService">
  33. <endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpEndpointBinding"
  34. contract="MSO.ErrorSystem.Services.ICommunityService" />
  35. <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  36. <host>
  37. <baseAddresses>
  38. <add baseAddress="http://localhost:666/CommunityService/" />
  39. </baseAddresses>
  40. </host>
  41. </service>
  42. <service name="MSO.ErrorSystem.Services.AdminService">
  43. <endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpEndpointBinding"
  44. contract="MSO.ErrorSystem.Services.IAdminService" />
  45. <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  46. <host>
  47. <baseAddresses>
  48. <add baseAddress="http://localhost:666/AdminService/" />
  49. </baseAddresses>
  50. </host>
  51. </service>
  52. <service name="MSO.ErrorSystem.Services.SearchService">
  53. <endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpEndpointBinding"
  54. contract="MSO.ErrorSystem.Services.ISearchService" />
  55. <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  56. <host>
  57. <baseAddresses>
  58. <add baseAddress="http://localhost:666/SearchService/" />
  59. </baseAddresses>
  60. </host>
  61. </service>
  62. </services>
  63. <bindings>
  64. <basicHttpBinding>
  65. <binding name="BasicHttpEndpointBinding">
  66. <security mode="TransportCredentialOnly">
  67. <transport clientCredentialType="Windows" />
  68. </security>
  69. </binding>
  70. </basicHttpBinding>
  71. </bindings>
  72. </system.serviceModel>
  73. <appSettings>
  74. <add key="ClientSettingsProvider.ServiceUri" value="" />
  75. <add key="ClientSettingsProvider.ConnectionStringName" value="DefaultConnection" />
  76. </appSettings>
  77. <system.web>
  78. <membership defaultProvider="ClientAuthenticationMembershipProvider">
  79. <providers>
  80. <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientWindowsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" connectionStringName="DefaultConnection" credentialsProvider="" />
  81. </providers>
  82. </membership>
  83. <roleManager defaultProvider="ClientRoleProvider" enabled="true">
  84. <providers>
  85. <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" connectionStringName="DefaultConnection" />
  86. </providers>
  87. </roleManager>
  88. </system.web>
  89. <!-- log4net Configuration -->
  90. <log4net>
  91. <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
  92. <file value="D:\logs\mso_errorsystem.txt" />
  93. <appendToFile value="true" />
  94. <rollingStyle value="Size" />
  95. <maxSizeRollBackups value="10" />
  96. <maximumFileSize value="100KB" />
  97. <staticLogFileName value="true" />
  98. <layout type="log4net.Layout.PatternLayout">
  99. <conversionPattern value="%date [%thread] [%-1level] [%logger] %message%newline%exception" />
  100. </layout>
  101. </appender>
  102. <root>
  103. <level value="All" />
  104. <appender-ref ref="RollingFileAppender" />
  105. </root>
  106. </log4net>
  107. <!-- Custom Configuration Sections -->
  108. <DatabaseConfig StorageType="Embedded" Path="D:\Data\Raven\mso_errorsystem\" />
  109. <DomainConfig DomainName="mso.local" />
  110. </configuration>
Advertisement
Add Comment
Please, Sign In to add comment