Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <configuration>
- <configSections>
- <section name="DatabaseConfig" type="MSO.ErrorSystem.Services.DatabaseConfigurationSection, MSO.ErrorSystem.Services" />
- <section name="DomainConfig" type="MSO.ErrorSystem.Services.DomainConfigurationSection, MSO.ErrorSystem.Services" />
- <section name="log4net" type="log4net.Config.Log4NetConfigurationSecionHandler, log4net" />
- </configSections>
- <startup>
- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
- </startup>
- <system.serviceModel>
- <behaviors>
- <serviceBehaviors>
- <behavior name="">
- <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true" />
- <serviceDebug includeExceptionDetailInFaults="true" />
- <dataContractSerializer maxItemsInObjectGraph="2147483647" />
- </behavior>
- </serviceBehaviors>
- </behaviors>
- <services>
- <service name="MSO.ErrorSystem.Services.ReportingService">
- <endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpEndpointBinding"
- contract="MSO.ErrorSystem.Services.IReportingService" />
- <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
- <host>
- <baseAddresses>
- <add baseAddress="http://localhost:666/ReportingService/" />
- </baseAddresses>
- </host>
- </service>
- <service name="MSO.ErrorSystem.Services.CommunityService">
- <endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpEndpointBinding"
- contract="MSO.ErrorSystem.Services.ICommunityService" />
- <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
- <host>
- <baseAddresses>
- <add baseAddress="http://localhost:666/CommunityService/" />
- </baseAddresses>
- </host>
- </service>
- <service name="MSO.ErrorSystem.Services.AdminService">
- <endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpEndpointBinding"
- contract="MSO.ErrorSystem.Services.IAdminService" />
- <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
- <host>
- <baseAddresses>
- <add baseAddress="http://localhost:666/AdminService/" />
- </baseAddresses>
- </host>
- </service>
- <service name="MSO.ErrorSystem.Services.SearchService">
- <endpoint address="" binding="basicHttpBinding" bindingConfiguration="BasicHttpEndpointBinding"
- contract="MSO.ErrorSystem.Services.ISearchService" />
- <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
- <host>
- <baseAddresses>
- <add baseAddress="http://localhost:666/SearchService/" />
- </baseAddresses>
- </host>
- </service>
- </services>
- <bindings>
- <basicHttpBinding>
- <binding name="BasicHttpEndpointBinding">
- <security mode="TransportCredentialOnly">
- <transport clientCredentialType="Windows" />
- </security>
- </binding>
- </basicHttpBinding>
- </bindings>
- </system.serviceModel>
- <appSettings>
- <add key="ClientSettingsProvider.ServiceUri" value="" />
- <add key="ClientSettingsProvider.ConnectionStringName" value="DefaultConnection" />
- </appSettings>
- <system.web>
- <membership defaultProvider="ClientAuthenticationMembershipProvider">
- <providers>
- <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="" />
- </providers>
- </membership>
- <roleManager defaultProvider="ClientRoleProvider" enabled="true">
- <providers>
- <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" />
- </providers>
- </roleManager>
- </system.web>
- <!-- log4net Configuration -->
- <log4net>
- <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
- <file value="D:\logs\mso_errorsystem.txt" />
- <appendToFile value="true" />
- <rollingStyle value="Size" />
- <maxSizeRollBackups value="10" />
- <maximumFileSize value="100KB" />
- <staticLogFileName value="true" />
- <layout type="log4net.Layout.PatternLayout">
- <conversionPattern value="%date [%thread] [%-1level] [%logger] %message%newline%exception" />
- </layout>
- </appender>
- <root>
- <level value="All" />
- <appender-ref ref="RollingFileAppender" />
- </root>
- </log4net>
- <!-- Custom Configuration Sections -->
- <DatabaseConfig StorageType="Embedded" Path="D:\Data\Raven\mso_errorsystem\" />
- <DomainConfig DomainName="mso.local" />
- </configuration>
Advertisement
Add Comment
Please, Sign In to add comment