Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Clients.Access/3.3/app.config @ 8042

Last change on this file since 8042 was 8042, checked in by ascheibe, 12 years ago

#1648 integrated access service client parts into trunk

File size: 3.5 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    <system.serviceModel>
9        <bindings>
10            <wsHttpBinding>
11                <binding name="WSHttpBinding_IAccessService" closeTimeout="00:01:00"
12                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
13                    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
14                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
15                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
16                    allowCookies="false">
17                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
18                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
19                    <reliableSession ordered="true" inactivityTimeout="00:10:00"
20                        enabled="false" />
21                    <security mode="Message">
22                        <transport clientCredentialType="Windows" proxyCredentialType="None"
23                            realm="" />
24                        <message clientCredentialType="UserName" negotiateServiceCredential="true"
25                            algorithmSuite="Default" />
26                    </security>
27                </binding>
28            </wsHttpBinding>
29        </bindings>
30        <client>
31            <endpoint address="http://services.heuristiclab.com/AccessService-3.3/AccessService.svc" binding="wsHttpBinding"
32                bindingConfiguration="WSHttpBinding_IAccessService" contract="HeuristicLab.Clients.Access.IAccessService"
33                name="WSHttpBinding_IAccessService">
34                <identity>
35                    <certificate encodedValue="AwAAAAEAAAAUAAAAwK1+2oAmcy/mI2P2QjyiJRh0y60gAAAAAQAAACoCAAAwggImMIIBj6ADAgECAhAIkseQ2EEhgU720qJA61gqMA0GCSqGSIb3DQEBBAUAMCQxIjAgBgNVBAMTGXNlcnZpY2VzLmhldXJpc3RpY2xhYi5jb20wHhcNMTAwNTExMTExNDAyWhcNMzkxMjMxMjM1OTU5WjAkMSIwIAYDVQQDExlzZXJ2aWNlcy5oZXVyaXN0aWNsYWIuY29tMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCq26Bwmwc7k+4W30qLQ2j+FInEL5BuH6opDY6CSlrtt3xQS/anrhvpbf3QghLDVINzcHkzbPmm/SguG4F85QLB6xO+tJaOvRo0iEK5g3c307vMIru7FJwk/OhplEQ5J1hbDgL3zOJlrWlgtqRVxCtVdF3XroI9BctOt1NkeKv9ewIDAQABo1kwVzBVBgNVHQEETjBMgBCjbgdYd4j5JgUuJ1Wo/GxroSYwJDEiMCAGA1UEAxMZc2VydmljZXMuaGV1cmlzdGljbGFiLmNvbYIQCJLHkNhBIYFO9tKiQOtYKjANBgkqhkiG9w0BAQQFAAOBgQAb/2xk2uQad68shSPl/uixWgvFI8WkxOTBopOLaLtDxwCeZ3mWVHdV9VnixHtThubnEBXAhYOCQSIXWtQuXFWO+gH3YyjTRJY5kTmXyuvBRTn3/so5SrQ7Rdlm9hf6E5YVX3tCjAy7ybUyaDUkQfmH5vmvgvpMzRfsJ1qhnUpJiQ==" />
36                </identity>
37            </endpoint>
38        </client>
39    </system.serviceModel>
40    <applicationSettings>
41      <HeuristicLab.Clients.Access.Settings>
42        <setting name="HLExeName" serializeAs="String">
43          <value>HeuristicLab 3.3</value>
44        </setting>
45        <setting name="ClientTypeName" serializeAs="String">
46          <value>HLClient</value>
47        </setting>
48      </HeuristicLab.Clients.Access.Settings>
49    </applicationSettings>
50</configuration>
Note: See TracBrowser for help on using the repository browser.