Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Server/3.2/App.config @ 3001

Last change on this file since 3001 was 2904, checked in by kgrading, 14 years ago

added functionality (#830)

File size: 1.3 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3  <configSections>
4    <sectionGroup name="spring">
5      <section name="context" type="Spring.Context.Support.ContextHandler, Spring.Core"/>
6      <section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core"/>
7    </sectionGroup>
8  </configSections>
9  <spring>
10
11    <context>
12      <resource uri="config://spring/objects"/>
13    </context>
14
15    <objects xmlns="http://www.springframework.net"
16         xmlns:aop="http://www.springframework.net/aop">
17      <object id="calculator" singleton="false"
18              type="HeuristicLab.Hive.Server.Core.ClientFacade, HeuristicLab.Hive.Server.Core-3.2" />
19
20      <object id="serviceOperation" type="Spring.Aop.Support.SdkRegularExpressionMethodPointcut, Spring.Aop">
21        <property name="patterns">
22          <list>
23            <value>HeuristicLab.Hive.Server.Core.ClientFacade.*</value>           
24          </list>
25        </property>
26      </object>
27
28      <object id="sci" type="HeuristicLab.Hive.Server.ServiceCallInterception, HeuristicLab.Hive.Server-3.2" />
29
30      <aop:config>
31        <aop:advisor pointcut-ref="serviceOperation" advice-ref="sci"/>
32      </aop:config>
33    </objects>
34
35
36  </spring>
37</configuration>
Note: See TracBrowser for help on using the repository browser.