Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive.Azure/HeuristicLab.Clients.Hive.Slave.AzureClient/app.config @ 6990

Last change on this file since 6990 was 6990, checked in by spimming, 12 years ago

#1680:

  • AzureClient initial commit
  • Azure project added
  • WorkerRole for starting the slave core
File size: 3.2 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3    <system.diagnostics>
4        <trace>
5            <listeners>
6                <add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
7                    name="AzureDiagnostics">
8                    <filter type="" />
9                </add>
10            </listeners>
11        </trace>
12    </system.diagnostics>
13
14  <system.serviceModel>
15    <bindings>
16      <wsHttpBinding>
17        <binding name="wsHttpBinding_Hive" closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:20:00" sendTimeout="00:20:00" bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard" maxBufferPoolSize="2147483647" maxReceivedMessageSize="2147483647" messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true" allowCookies="false">
18          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647" maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
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
28    <services>
29      <service name="HeuristicLab.Clients.Hive.SlaveCore.SlaveCommunicationService">
30        <endpoint address="net.pipe://localhost/HeuristicLabSlaveCom" binding="netNamedPipeBinding" contract="HeuristicLab.Clients.Hive.SlaveCore.ServiceContracts.ISlaveCommunication"/>
31      </service>
32    </services>
33
34    <client>
35      <endpoint name="SlaveCommunicationServiceEndpoint" address="net.pipe://localhost/HeuristicLabSlaveCom" binding="netNamedPipeBinding" contract="HeuristicLab.Clients.Hive.SlaveCore.ServiceContracts.ISlaveCommunication"/>
36      <endpoint address="http://localhost/Hive-3.3/HiveService.svc"
37                binding="wsHttpBinding"
38                bindingConfiguration="wsHttpBinding_Hive"
39                contract="HeuristicLab.Clients.Hive.IHiveService"
40                name="wsHttpBinding_IHiveService">
41        <identity>
42          <certificate encodedValue="AwAAAAEAAAAUAAAADzsDXayAbGN7jnpbyVfY0wz9YFcgAAAAAQAAAPIBAAAwggHuMIIBW6ADAgECAhCzetYpS2a8okHn43VcHxP0MAkGBSsOAwIdBQAwFDESMBAGA1UEAxMJbG9jYWxob3N0MB4XDTExMTEwNDE1NTQxN1oXDTM5MTIzMTIzNTk1OVowFDESMBAGA1UEAxMJbG9jYWxob3N0MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCSYyb95Mu+uX+bV/qP9GQAo3QVuolC3JSBYCPb0hwDzt1Noef8m3W9C6oBwHp1vFrhYCjgcSKkq/6Ahz1FTInvfgM0ryC+wuNU3Qf8wnPBKQWy1XzfNgooJXfZVj2aJBhtfPCduf0i20bKLq6Vln3x7LJ2fQJl726PEydisDsVPQIDAQABo0kwRzBFBgNVHQEEPjA8gBBOTq0016GUpf8I0+rSZ7SBoRYwFDESMBAGA1UEAxMJbG9jYWxob3N0ghCzetYpS2a8okHn43VcHxP0MAkGBSsOAwIdBQADgYEAYUKhADqju3dh+9Gp47yDnOiJ/VIBa2uc4TOntXb5pgesS6vwd8assO8fmcT0D2IOJ+V4Q0H3Q8z3AqE9FoPrdj6/1CX+aQOSPwTWhs5AHRk6SvDLDaQtJPTNwldlyxmVTSZFq1wqLaRFCZ1U3furTOmHVOnIotIp+zm63bqs5U0=" />
43        </identity>
44      </endpoint>
45    </client>
46
47  </system.serviceModel>
48</configuration>
Note: See TracBrowser for help on using the repository browser.