[1468] | 1 | <?xml version="1.0" encoding="utf-8" ?>
|
---|
| 2 | <configuration>
|
---|
[2904] | 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>
|
---|
[1468] | 8 | <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
|
---|
| 9 | <section name="HeuristicLab.Hive.Server.Core.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
|
---|
| 10 | </sectionGroup>
|
---|
| 11 | </configSections>
|
---|
| 12 | <applicationSettings>
|
---|
| 13 | <HeuristicLab.Hive.Server.Core.Properties.Settings>
|
---|
| 14 | <setting name="HiveServerConnectionString" serializeAs="String">
|
---|
[2608] | 15 | <value>Data Source=127.0.0.1;Initial Catalog=HeuristicLab.Hive;Persist Security Info=True;User ID=hive;Password=hive;Pooling=true;MultipleActiveResultSets=true</value>
|
---|
[1468] | 16 | </setting>
|
---|
| 17 | </HeuristicLab.Hive.Server.Core.Properties.Settings>
|
---|
| 18 | </applicationSettings>
|
---|
[2904] | 19 | <spring>
|
---|
| 20 | <context>
|
---|
| 21 | <resource uri="config://spring/objects"/>
|
---|
| 22 | </context>
|
---|
| 23 |
|
---|
| 24 | <objects xmlns="http://www.springframework.net"
|
---|
| 25 | xmlns:aop="http://www.springframework.net/aop">
|
---|
| 26 | <object id="calculator" singleton="false"
|
---|
| 27 | type="HeuristicLab.Hive.Server.Core.ClientFacade, HeuristicLab.Hive.Server.Core-3.2" />
|
---|
| 28 |
|
---|
| 29 | <object id="serviceOperation" type="Spring.Aop.Support.SdkRegularExpressionMethodPointcut, Spring.Aop">
|
---|
| 30 | <property name="patterns">
|
---|
| 31 | <list>
|
---|
| 32 | <value>HeuristicLab.Hive.Server.Core.ClientFacade.*</value>
|
---|
| 33 | </list>
|
---|
| 34 | </property>
|
---|
| 35 | </object>
|
---|
| 36 |
|
---|
| 37 | <object id="sci" type="HeuristicLab.Hive.Server.ServiceCallInterception, HeuristicLab.Hive.Server-3.2" />
|
---|
| 38 |
|
---|
| 39 | <aop:config>
|
---|
| 40 | <aop:advisor pointcut-ref="serviceOperation" advice-ref="sci"/>
|
---|
| 41 | </aop:config>
|
---|
| 42 | </objects>
|
---|
| 43 | </spring>
|
---|
[1468] | 44 | </configuration> |
---|