Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/07/10 10:22:27 (14 years ago)
Author:
cneumuel
Message:
  • created HiveClient which shows an overview over all submitted HiveExperiments
  • its possible to download all submitted HiveExperiments including results
  • Experiments are now sent as a whole to the Hive and the Hive-Slaves take care of creating child-jobs (if necessary). The parent job is then paused and will be reactivated when all child-jobs are finished
  • WcfService-Clients are now consistently managed by WcfServicePool which allows to use IDisposable-Pattern and always keeps exactly one proxy-object until all callers disposed them.
  • created ProgressView which is able to lock a View and display progress of an action. It also allows to simulate progress if no progress-information is available so that users don't get too nervous while waiting.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-Hive/sources/HeuristicLab.Hive/HeuristicLab.Hive.Slave.Communication/3.3/app.config

    r4342 r4368  
    2828          receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false"
    2929          transactionFlow="false" hostNameComparisonMode="StrongWildcard"
    30           maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text"
     30          maxBufferPoolSize="524288" maxReceivedMessageSize="104857600" messageEncoding="Text"
    3131          textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
    3232          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
     
    4545    <client>
    4646      <endpoint address="http://localhost:9000/SlaveService" binding="wsHttpBinding" behaviorConfiguration="SlaveServiceBehaviour"
    47         bindingConfiguration="SlaveHttpEndpoint" contract="SlaveService.ISlaveFacade"
     47        bindingConfiguration="SlaveHttpEndpoint" contract="SlaveFacade.ISlaveFacade"
    4848        name="SlaveHttpEndpoint">
    4949        <identity>
     
    5353      <endpoint address="net.tcp://localhost:9001/SlaveServiceStreamed" behaviorConfiguration="SlaveServiceBehaviour"
    5454        binding="netTcpBinding" bindingConfiguration="SlaveTcpStreamedEndpoint"
    55         contract="SlaveService.ISlaveFacade" name="SlaveTcpStreamedEndpoint">
     55        contract="SlaveFacade.ISlaveFacade" name="SlaveTcpStreamedEndpoint">
    5656        <identity>
    5757          <dns value="localhost" />
Note: See TracChangeset for help on using the changeset viewer.