Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HiveProjectManagement/HeuristicLab.Clients.Access/3.3/app.config @ 15377

Last change on this file since 15377 was 15361, checked in by jkarder, 7 years ago

#2835:

  • switched to DNS identities
  • updated service client generation cmds
File size: 2.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3  <configSections>
4    <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
5      <section name="HeuristicLab.Clients.Access.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
6    </sectionGroup>
7  </configSections>
8
9  <applicationSettings>
10    <HeuristicLab.Clients.Access.Settings>
11      <setting name="HLExeName" serializeAs="String">
12        <value>HeuristicLab 3.3</value>
13      </setting>
14      <setting name="ClientTypeName" serializeAs="String">
15        <value>HLClient</value>
16      </setting>
17    </HeuristicLab.Clients.Access.Settings>
18  </applicationSettings>
19
20  <!--
21    !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!! ATTENTION !!!
22    If you want to update the configuration with the GenerateServiceClients.cmd, make sure to remove all child nodes of system.serviceModel first.
23  -->
24  <system.serviceModel>
25    <bindings>
26      <wsHttpBinding>
27        <binding name="WSHttpBinding_IAccessService" maxBufferPoolSize="2147483647"
28          maxReceivedMessageSize="2147483647">
29          <readerQuotas maxDepth="2147483647" maxStringContentLength="2147483647"
30            maxArrayLength="2147483647" maxBytesPerRead="2147483647" maxNameTableCharCount="2147483647" />
31          <security>
32            <message clientCredentialType="UserName" />
33          </security>
34        </binding>
35      </wsHttpBinding>
36    </bindings>
37    <client>
38      <endpoint address="http://services.heuristiclab.com/AccessService-3.3/AccessService.svc"
39        binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAccessService"
40        contract="HeuristicLab.Clients.Access.IAccessService" name="WSHttpBinding_IAccessService">
41        <identity>
42          <dns value="services.heuristiclab.com" />
43        </identity>
44      </endpoint>
45    </client>
46  </system.serviceModel>
47
48  <startup>
49    <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
50  </startup>
51</configuration>
Note: See TracBrowser for help on using the repository browser.