Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/12/10 10:57:21 (14 years ago)
Author:
kgrading
Message:

changed the complete DAL to LINQ 2 SQL (with the exception of the job streaming), did a lot of refactoring, Introduced DTOs (that are named DTOs for better understanding), added the spring.NET Interceptor, reintroduced transactions and cleaned up the whole JobResult thing and updated a part of the config merger (#830)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab/app.config

    r2692 r3011  
    33    <configSections>
    44        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
    5             <section name="HeuristicLab.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
     5            <section name="HeuristicLab.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />         
    66        </sectionGroup>
    77    </configSections>
     
    3232    </HeuristicLab.Properties.Settings>
    3333  </applicationSettings>
     34  <spring>
     35
     36    <context>
     37      <resource uri="config://spring/objects"/>
     38    </context>
     39
     40    <objects xmlns="http://www.springframework.net"
     41         xmlns:aop="http://www.springframework.net/aop">
     42      <object id="clientFacade" singleton="false"
     43              type="HeuristicLab.Hive.Server.Core.ClientFacade, HeuristicLab.Hive.Server.Core-3.2" />
     44
     45      <object id="executionEngineFacade" singleton="false"
     46              type="HeuristicLab.Hive.Server.Core.ExecutionEngineFacade, HeuristicLab.Hive.Server.Core-3.2" />
     47
     48      <object id="serverConsoleFacade" singleton="false"
     49              type="HeuristicLab.Hive.Server.Core.ServerConsoleFacade, HeuristicLab.Hive.Server.Core-3.2" />
     50
     51      <object id="serviceOperation" type="Spring.Aop.Support.SdkRegularExpressionMethodPointcut, Spring.Aop">
     52        <property name="patterns">
     53          <list>
     54            <value>HeuristicLab.Hive.Server.Core.ClientFacade.*</value>
     55            <value>HeuristicLab.Hive.Server.Core.ExecutionEngineFacade.*</value>
     56            <value>HeuristicLab.Hive.Server.Core.ServerConsoleFacade.*</value>
     57          </list>
     58        </property>
     59      </object>
     60
     61      <object id="sci" type="HeuristicLab.Hive.Server.ServiceCallInterception, HeuristicLab.Hive.Server-3.2" />
     62
     63      <aop:config>
     64        <aop:advisor pointcut-ref="serviceOperation" advice-ref="sci"/>
     65      </aop:config>
     66    </objects>
     67  </spring>
    3468</configuration>
Note: See TracChangeset for help on using the changeset viewer.