Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.2/sources/HeuristicLab/app.config @ 9928

Last change on this file since 9928 was 4050, checked in by kgrading, 14 years ago

#828 checked in everything to restore build ability

File size: 3.7 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3
4
5  <configSections>
6    <sectionGroup name="spring">
7      <section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core"/>
8      <section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core"/>
9    </sectionGroup>
10        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
11            <section name="HeuristicLab.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />         
12        </sectionGroup>
13    </configSections>
14  <connectionStrings>
15  </connectionStrings>
16  <!--<system.diagnostics>
17    <sources>
18      <source name="System.ServiceModel.MessageLogging">
19        <listeners>
20          <add name="messages"
21          type="System.Diagnostics.XmlWriterTraceListener"
22          initializeData="c:\logs\messages.svclog" />
23        </listeners>
24      </source>
25    </sources>
26  </system.diagnostics>-->
27
28
29  <system.serviceModel>
30    <!--<diagnostics>
31      <messageLogging
32           logEntireMessage="true"
33           logMalformedMessages="false"
34           logMessagesAtServiceLevel="true"
35           logMessagesAtTransportLevel="false"
36           maxMessagesToLog="30000"
37           maxSizeOfMessageToLog="2000"/>
38    </diagnostics> -->
39
40  </system.serviceModel>
41  <runtime>
42    <gcServer enabled="false"/>
43  </runtime>
44 
45  <system.data>
46    <DbProviderFactories>
47      <remove invariant="System.Data.SQLite"/>
48      <add name="SQLite Data Provider" invariant="System.Data.SQLite"
49           description=".Net Framework Data Provider for SQLite"           
50           type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
51    </DbProviderFactories>
52  </system.data>
53  <applicationSettings>
54    <HeuristicLab.Properties.Settings>
55      <setting name="User" serializeAs="String">
56        <value>unknown</value>
57      </setting>
58      <setting name="Organization" serializeAs="String">
59        <value>unknown</value>
60      </setting>
61    </HeuristicLab.Properties.Settings>
62  </applicationSettings>
63  <spring>
64
65    <context>
66      <resource uri="config://spring/objects"/>
67    </context>
68
69    <objects xmlns="http://www.springframework.net"
70         xmlns:aop="http://www.springframework.net/aop">
71      <object id="clientFacade" singleton="false"
72              type="HeuristicLab.Hive.Server.Core.ClientFacade, HeuristicLab.Hive.Server.Core-3.2" />
73
74      <object id="executionEngineFacade" singleton="false"
75              type="HeuristicLab.Hive.Server.Core.ExecutionEngineFacade, HeuristicLab.Hive.Server.Core-3.2" />
76
77      <object id="serverConsoleFacade" singleton="false"
78              type="HeuristicLab.Hive.Server.Core.ServerConsoleFacade, HeuristicLab.Hive.Server.Core-3.2" />
79
80      <object id="serviceOperation" type="Spring.Aop.Support.SdkRegularExpressionMethodPointcut, Spring.Aop">
81        <property name="patterns">
82          <list>
83            <value>HeuristicLab.Hive.Server.Core.ClientFacade.*</value>
84            <value>HeuristicLab.Hive.Server.Core.ExecutionEngineFacade.*</value>
85            <value>HeuristicLab.Hive.Server.Core.ServerConsoleFacade.*</value>
86          </list>
87        </property>
88      </object>
89
90      <object id="sci" type="HeuristicLab.Hive.Server.ServiceCallInterception, HeuristicLab.Hive.Server-3.2" />
91
92      <aop:config>
93        <aop:advisor pointcut-ref="serviceOperation" advice-ref="sci"/>
94      </aop:config>
95    </objects>
96  </spring>
97</configuration>
Note: See TracBrowser for help on using the repository browser.