Changeset 4050
- Timestamp:
- 07/20/10 08:50:21 (14 years ago)
- Location:
- branches/3.2/sources
- Files:
-
- 2 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.2/sources/HeuristicLab.Hive.Server.LINQDataAccess/3.2/BaseDao.cs
r4042 r4050 14 14 } 15 15 16 protected void CommitChanges() { 17 //TODO: DoWhile 16 protected void CommitChanges() { 18 17 try { 19 18 Context.SubmitChanges(ConflictMode.ContinueOnConflict); -
branches/3.2/sources/HeuristicLab.PluginInfrastructure/Sandboxing/SandboxManager.cs
r4042 r4050 66 66 #region permission set for sandbox 67 67 //Uncomment code for sandboxed appdomain 68 pset = new PermissionSet(PermissionState.None);68 /* pset = new PermissionSet(PermissionState.None); 69 69 pset.AddPermission(new SecurityPermission(SecurityPermissionFlag.Execution)); 70 70 pset.AddPermission(new ReflectionPermission(ReflectionPermissionFlag.AllFlags)); … … 78 78 } 79 79 80 pset.AddPermission(fPerm); 80 pset.AddPermission(fPerm);*/ 81 81 #endregion 82 82 83 83 #region permission set of unrestricted appdomain 84 84 // unrestricted appdomain 85 //pset = new PermissionSet(PermissionState.Unrestricted);85 pset = new PermissionSet(PermissionState.Unrestricted); 86 86 #endregion 87 87 -
branches/3.2/sources/HeuristicLab.Tracing/3.2/HeuristicLab.Hive.log4net.xml
r3931 r4050 64 64 <threshold value="DEBUG"/> 65 65 </evaluator> 66 <appender-ref ref="Server tRollingFileAppender" />66 <appender-ref ref="ServerRollingFileAppender" /> 67 67 </appender> 68 68 -
branches/3.2/sources/HeuristicLab.Tracing/3.2/HeuristicLab.Tracing-3.2.csproj
r2900 r4050 88 88 <ItemGroup> 89 89 <None Include="HeuristicLabTracingPlugin.cs.frame" /> 90 <Compile Include="HiveLogger.cs" />91 90 <Compile Include="Logger.cs" /> 92 91 <Compile Include="HeuristicLabTracingPlugin.cs" /> 92 <Compile Include="MethodCallPatternConverter.cs" /> 93 <Compile Include="MethodCallPatternLayout.cs" /> 93 94 <Compile Include="Properties\AssemblyInfo.cs" /> 94 95 <Compile Include="Properties\Settings.Designer.cs"> -
branches/3.2/sources/HeuristicLab.Tracing/3.2/Properties/Settings.Designer.cs
r1622 r4050 2 2 // <auto-generated> 3 3 // This code was generated by a tool. 4 // Runtime Version:2.0.50727. 30744 // Runtime Version:2.0.50727.4927 5 5 // 6 6 // Changes to this file may cause incorrect behavior and will be lost if … … 26 26 [global::System.Configuration.UserScopedSettingAttribute()] 27 27 [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 [global::System.Configuration.DefaultSettingValueAttribute(" ")]28 [global::System.Configuration.DefaultSettingValueAttribute("HeuristicLab.Hive.log4net.xml")] 29 29 public string TracingLog4netConfigFile { 30 30 get { -
branches/3.2/sources/HeuristicLab.Tracing/3.2/Properties/Settings.settings
r1622 r4050 4 4 <Settings> 5 5 <Setting Name="TracingLog4netConfigFile" Type="System.String" Scope="User"> 6 <Value Profile="(Default)" />6 <Value Profile="(Default)">HeuristicLab.Hive.log4net.xml</Value> 7 7 </Setting> 8 8 </Settings> -
branches/3.2/sources/HeuristicLab/HeuristicLab.csproj
r2601 r4050 124 124 <None Include="CreateConsoleApplication.cmd" /> 125 125 <None Include="CustomPostBuild.cmd" /> 126 <None Include=" CopyAssemblies.cmd" />126 <None Include="Resources\CopyAssemblies.cmd" /> 127 127 <None Include="CustomPostBuildTemplate_UpdateLocalInstallation.cmd" /> 128 128 <None Include="MergeConfigs.cmd" /> -
branches/3.2/sources/HeuristicLab/app.config
r3473 r4050 1 1 <?xml version="1.0" encoding="utf-8" ?> 2 2 <configuration> 3 <configSections> 4 <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > 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" > 5 11 <section name="HeuristicLab.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> 6 12 </sectionGroup> … … 8 14 <connectionStrings> 9 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 10 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 11 40 </system.serviceModel> 12 41 <runtime> 13 <gcServer enabled=" true"/>42 <gcServer enabled="false"/> 14 43 </runtime> 15 44 … … 32 61 </HeuristicLab.Properties.Settings> 33 62 </applicationSettings> 34 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> 35 97 </configuration>
Note: See TracChangeset
for help on using the changeset viewer.