Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.ConsoleClient-3.4/app.config @ 5375

Last change on this file since 5375 was 5375, checked in by ascheibe, 13 years ago

#1233

  • added various bits to the Hive Server
  • adjusted data model
File size: 2.7 KB
Line 
1<?xml version="1.0"?>
2<configuration>
3   
4  <system.serviceModel>
5    <bindings>
6      <wsHttpBinding>
7        <binding name="wsHttpBinding" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="524288" maxReceivedMessageSize="65536" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
8          <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
9          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
10          <security mode="Message">
11            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
12            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
13          </security>
14        </binding>
15      </wsHttpBinding>
16    </bindings>
17   
18    <services>
19      <service name="HeuristicLab.Clients.Hive.Slave.SlaveCommunicationService">       
20        <endpoint address="net.pipe://localhost/HeuristicLabSlaveCom" binding="netNamedPipeBinding" contract="HeuristicLab.Clients.Hive.Slave.ServiceContracts.ISlaveCommunication"/>
21      </service>
22    </services>
23
24   <client>
25     <!--http://localhost:9000/Hive-3.4-->
26    <endpoint address="http://localhost:80/Service.svc"
27              binding="wsHttpBinding"
28              bindingConfiguration="wsHttpBinding"
29              contract="HeuristicLab.Services.Hive.Common.ServiceContracts.IHiveService"
30              name="wsHttpBinding_IHiveService">
31              <identity>
32                <certificate encodedValue="AwAAAAEAAAAUAAAAiQt8DnyaI8rYHhLNyW62i58+eG8gAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhAFNFYz6Srdmk3PZJ/mka5sMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMTIwNjE0MTc0M1oXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCueTMWJzOZ1IBacG40aWdr3qDWijEO4VwhgtNr+WNFsRG+qW2rTZZFtaC0U028aj3MX13mr+pzpcPJMes2rr38PuxhN6BhdzgRfyEy/eHk4iKqZztuJSXgNAyfyjhovTchLitT2lilddTRFj2PlLYv+PUu+QhQNTm2iW4UDljS9wIDAQABo0kwRzBFBgNVHQEEPjA8gBBeipmIklE3kPz7i+AdKqAgoRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghAFNFYz6Srdmk3PZJ/mka5sMAkGBSsOAwIdBQADgYEAGnxEaFT8QKKk1DtJ8/+TOBxSo0UkBlNiTY0HKkA3w/2DOPZKybhslm8gqJic8ZPsk5YgEibrdQqB0AnNG983RAlFqgGvsAbQAMXTDJ5GoTgHaxk/T+7a7Sk4xJALUL/vWuPGbA354RVoKA4gV3gJzU+Fj3/fLACf0+D/nR9B5nw=" />
33              </identity>
34
35    </endpoint>
36   </client>
37   
38 </system.serviceModel>
39<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
Note: See TracBrowser for help on using the repository browser.