Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive-3.3/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Console/3.3/app.config @ 5213

Last change on this file since 5213 was 5213, checked in by cneumuel, 13 years ago

#1260

  • changed HiveEngine to be compatible with recent changes of engine
File size: 2.6 KB
Line 
1<?xml version="1.0"?>
2<configuration>
3  <system.serviceModel>
4    <behaviors>
5      <endpointBehaviors>
6        <behavior name="ServerConsoleBehaviour">
7          <clientCredentials>
8            <serviceCertificate>
9              <authentication certificateValidationMode="None"/>
10            </serviceCertificate>
11          </clientCredentials>
12        </behavior>
13      </endpointBehaviors>
14    </behaviors>
15    <bindings>
16      <wsHttpBinding>
17        <binding name="ServerConsoleHttpEndpoint" 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="104857600" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
18          <readerQuotas maxDepth="32" maxStringContentLength="104857600" maxArrayLength="104857600" maxBytesPerRead="4096" maxNameTableCharCount="16384"/>
19          <reliableSession ordered="true" inactivityTimeout="00:10:00" enabled="false"/>
20          <security mode="Message">
21            <transport clientCredentialType="Windows" proxyCredentialType="None" realm=""/>
22            <message clientCredentialType="UserName" negotiateServiceCredential="true" algorithmSuite="Default"/>
23          </security>
24        </binding>
25      </wsHttpBinding>
26    </bindings>
27    <client>
28      <endpoint address="http://christoph/Hive-3.3/ServerConsoleService.svc" behaviorConfiguration="ServerConsoleBehaviour" binding="wsHttpBinding" bindingConfiguration="ServerConsoleHttpEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.IServerConsoleFacade" name="ServerConsoleHttpEndpoint">
29        <identity>
30          <certificate encodedValue="AwAAAAEAAAAUAAAAozaKcSPdw1Cdd57hw9mr3eCjxTIgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhBhrVLVbjrtvUe4zWuGbVeuMAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTEwMTAxMjA2NTYyNloXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDFM6bQUgvCnsnBO9TZnOrC6x1riE2pXUzU6H38GYot674WNfir82fMh9+ojWSY/CiMzExcNWFtC3i8BG7giLYVwSanuwQ8QyRFYq3g5UMqdlm4/aof/4QMmS+SuRDsa8F4lbvdS9zBVFiyyUNYzlzO/rY08DrkCgx4X2IQGOvixwIDAQABo0kwRzBFBgNVHQEEPjA8gBCjMn9uvzNhU2c//E3RSYmUoRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghBhrVLVbjrtvUe4zWuGbVeuMAkGBSsOAwIdBQADgYEADIf8as2VBfZEpwb/GuVifvPTR0Ud+dTCwTjBdMymqjNR5NTSi408DifssSTBVGIi7xkWbQDlQQHOZmVqVFoqfNbGrtm9w1MSK24HAEMXr0WFBltvldGKCvtYnZqf377qU5gq7IBXcJZi87bZ2l1M3icr6RJo4fIbnZOa5M430aw="/>
31        </identity>
32      </endpoint>
33    </client>
34  </system.serviceModel>
35<startup><supportedRuntime version="v2.0.50727"/></startup></configuration>
Note: See TracBrowser for help on using the repository browser.