Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/06/11 16:37:12 (13 years ago)
Author:
ascheibe
Message:

#1233

  • updated server and client configuration files
  • removed outdated binaries
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Services.Hive.Web/web_services.config

    r6481 r6886  
    55    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
    66      <section name="HeuristicLab.Services.Hive.DataAccess.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    7       <section name="HeuristicLab.Services.Hive.Common.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
    87    </sectionGroup>
    9   </configSections>
    10 
     8  </configSections> 
    119  <applicationSettings>
    1210    <HeuristicLab.Services.Hive.DataAccess.Settings>
    13       <!-- Timeout for long running database command (storing or loading jobData) -->
    1411      <setting name="LongRunningDatabaseCommandTimeout" serializeAs="String">
    15         <value>00:05:33</value>
     12        <value>00:05:00</value>
     13      </setting>
     14      <setting name="EventLogName" serializeAs="String">
     15        <value>HL.Hive</value>
    1616      </setting>
    1717    </HeuristicLab.Services.Hive.DataAccess.Settings>
    18    
    19     <HeuristicLab.Services.Hive.Common.Settings>
    20       <!-- If a slave does not send a heartbeat for this time, it is set offline which means all of its jobs are rescheduled -->
    21       <setting name="SlaveHeartbeatTimeout" serializeAs="String">
    22         <value>00:01:00</value>
    23       </setting>
    24 
    25       <!-- When a job is in state `Calculating` this is the maximum time it does not have to send heartbeats, otherwise its rescheduled -->
    26       <setting name="CalculatingJobHeartbeatTimeout" serializeAs="String">
    27         <value>00:05:30</value>
    28       </setting>
    29 
    30       <!-- When a job is in state `Transferring` this is the maximum time it does not have to send heartbeats, otherwise its rescheduled -->
    31       <setting name="TransferringJobHeartbeatTimeout" serializeAs="String">
    32         <value>00:05:30</value>
    33       </setting>
    34     </HeuristicLab.Services.Hive.Common.Settings>
    3518  </applicationSettings>
    3619 
     
    4124  <connectionStrings>
    4225    <add name="HeuristicLab.Authentication" connectionString="data source=localhost;Integrated Security=SSPI;Initial Catalog=HeuristicLab.Authentication"/>
     26   <add name="HeuristicLab.Services.Hive.DataAccess.Settings.HeuristicLab_Hive_LinqConnectionString"
     27      connectionString="Data Source=localhost;Initial Catalog=HeuristicLab.Hive-3.3;Integrated Security=True;"
     28      providerName="System.Data.SqlClient" />
    4329  </connectionStrings>
    4430 
    4531  <system.web>
    4632  <customErrors mode="Off"/>
    47     <compilation debug="true" targetFramework="4.0" />
     33    <authentication mode="Forms" />
     34    <compilation debug="true" targetFramework="4.0">
     35      <assemblies>
     36        <add assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
     37      </assemblies>
     38    </compilation>
    4839    <membership>
    4940      <providers>
     
    5849      </providers>
    5950    </roleManager>
    60     <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID"/>
    61   <httpRuntime maxRequestLength="2147483647" />
     51    <pages controlRenderingCompatibilityVersion="3.5" clientIDMode="AutoID">
     52   <controls>
     53        <add tagPrefix="asp" namespace="System.Web.UI.DataVisualization.Charting"
     54         assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
     55      </controls>
     56    </pages>
     57    <httpRuntime maxRequestLength="2147483647"/>
     58 
    6259  </system.web>
    6360 
     
    7471      maxBufferPoolSize="2147483647"
    7572      maxReceivedMessageSize="2147483647">
    76           <readerQuotas maxStringContentLength="2147483647" maxArrayLength="2147483647" />
     73         <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
    7774          <security mode="Message">
    7875            <transport clientCredentialType="Certificate"/>
     
    111108      <service behaviorConfiguration="ServiceBehaviour_IHiveService" name="HeuristicLab.Services.Hive.HiveService">
    112109        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="" name="MexEndpoint" contract="IMetadataExchange" />
    113         <endpoint binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" name="WSHttpBinding_IHiveService" contract="HeuristicLab.Services.Hive.Common.ServiceContracts.IHiveService" />
     110        <endpoint binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IHiveService" name="WSHttpBinding_IHiveService" contract="HeuristicLab.Services.Hive.ServiceContracts.IHiveService" />
    114111      </service>
    115112    </services>
Note: See TracChangeset for help on using the changeset viewer.