Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/17/10 10:26:55 (14 years ago)
Author:
cneumuel
Message:
  • Refactored HL.Hive.Experiment. JobItems are not called HiveJobs and OptimizerJobs do not contain a hierarchy anymore.
  • Dynamic generation of jobs on a slave are not reflected on the client user interface.
  • Optimizer-Trees are now strictly synchronized with the HiveJob-Trees (also the ComputeInParallel property is taken into account when the Child HiveJobs are created)
  • Improved the way a class can report progress and lock the UI (IProgressReporter, IProgress, Progress, ProgressView)
  • Changes were made to the config-files, so that server and clients work with blade12.hpc.fh-hagenberg.at
  • Lots of small changes and bugfixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/app.config

    r4368 r4423  
    33  <system.diagnostics>
    44    <sources>
    5       <source name="System.ServiceModel.MessageLogging" switchValue="Verbose,ActivityTracing">
     5      <source name="System.ServiceModel.MessageLogging" switchValue="Warning, ActivityTracing">
    66        <listeners>
    77          <add type="System.Diagnostics.DefaultTraceListener" name="Default">
     8            <filter type="" />
     9          </add>
     10          <add name="ServiceModelMessageLoggingListener">
     11            <filter type="" />
     12          </add>
     13        </listeners>
     14      </source>
     15      <source name="System.ServiceModel" switchValue="Warning, ActivityTracing"
     16        propagateActivity="true">
     17        <listeners>
     18          <add type="System.Diagnostics.DefaultTraceListener" name="Default">
     19            <filter type="" />
     20          </add>
     21          <add name="ServiceModelTraceListener">
    822            <filter type="" />
    923          </add>
     
    1226    </sources>
    1327    <sharedListeners>
    14       <add type="System.Diagnostics.EventLogTraceListener, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
    15         name="EventLogTracer" traceOutputOptions="LogicalOperationStack, DateTime, Timestamp, ProcessId, ThreadId, Callstack">
     28      <add initializeData="c:\ch\svn\branches\3.3-hive\sources\heuristiclab.hive\heuristiclab.hive.server.core\3.3\app_messages.svclog"
     29        type="System.Diagnostics.XmlWriterTraceListener, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
     30        name="ServiceModelMessageLoggingListener" traceOutputOptions="Timestamp">
     31        <filter type="" />
     32      </add>
     33      <add initializeData="c:\ch\svn\branches\3.3-hive\sources\heuristiclab.hive\heuristiclab.hive.server.core\3.3\app_tracelog.svclog"
     34        type="System.Diagnostics.XmlWriterTraceListener, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
     35        name="ServiceModelTraceListener" traceOutputOptions="Timestamp">
    1636        <filter type="" />
    1737      </add>
     
    7898            roleProviderName="AspNetSqlRoleProvider" />
    7999          <serviceCredentials>
    80             <serviceCertificate findValue="localhost" x509FindType="FindBySubjectName" />
     100            <serviceCertificate findValue="blade12.hpc.fh-hagenberg.at" x509FindType="FindBySubjectName" />
    81101            <userNameAuthentication userNamePasswordValidationMode="MembershipProvider"
    82102              membershipProviderName="AspNetSqlMembershipProvider" />
     
    95115        <host>
    96116          <baseAddresses>
    97             <add baseAddress="http://localhost:9000/SlaveService" />
    98             <add baseAddress="net.tcp://localhost:9001/SlaveServiceStreamed" />
     117            <add baseAddress="http://blade12.hpc.fh-hagenberg.at:9000/SlaveService" />
     118            <add baseAddress="net.tcp://blade12.hpc.fh-hagenberg.at:9001/SlaveServiceStreamed" />
    99119          </baseAddresses>
    100120        </host>
     
    105125        <host>
    106126          <baseAddresses>
    107             <add baseAddress="http://localhost:9000/ServerConsoleService" />
     127            <add baseAddress="http://blade12.hpc.fh-hagenberg.at:9000/ServerConsoleService" />
    108128          </baseAddresses>
    109129        </host>
     
    115135        <host>
    116136          <baseAddresses>
    117             <add baseAddress="net.tcp://localhost:9001/ClientServiceStreamed" />
    118             <add baseAddress="http://localhost:9000/ClientService" />
     137            <add baseAddress="net.tcp://blade12.hpc.fh-hagenberg.at:9001/ClientServiceStreamed" />
     138            <add baseAddress="http://blade12.hpc.fh-hagenberg.at:9000/ClientService" />
    119139          </baseAddresses>
    120140        </host>
Note: See TracChangeset for help on using the changeset viewer.