Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive_Milestone3/sources/HeuristicLab.Hive.Client.Console/3.2/app.config @ 7259

Last change on this file since 7259 was 2023, checked in by whackl, 15 years ago

implemented service methods to get and set an calender #468

File size: 3.0 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3    <configSections>
4        <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
5            <section name="HeuristicLab.Hive.Client.Console.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
6        </sectionGroup>
7    </configSections>
8       <userSettings>
9        <HeuristicLab.Hive.Client.Console.Properties.Settings>
10            <setting name="IpAdress" serializeAs="String">
11                <value>10.0.0.1</value>
12            </setting>
13        </HeuristicLab.Hive.Client.Console.Properties.Settings>
14    </userSettings>
15       <system.serviceModel>
16              <bindings>
17                     <netTcpBinding>
18                            <binding name="NetTcpBinding_IClientConsoleCommunicator" closeTimeout="00:01:00"
19                                   openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
20                                   transactionFlow="false" transferMode="Buffered" transactionProtocol="OleTransactions"
21                                   hostNameComparisonMode="StrongWildcard" listenBacklog="10"
22                                   maxBufferPoolSize="524288" maxBufferSize="65536" maxConnections="10"
23                                   maxReceivedMessageSize="65536">
24                                   <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
25                                          maxBytesPerRead="4096" maxNameTableCharCount="16384" />
26                                   <reliableSession ordered="true" inactivityTimeout="00:10:00"
27                                          enabled="false" />
28                                   <security mode="Transport">
29                                          <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
30                                          <message clientCredentialType="Windows" />
31                                   </security>
32                            </binding>
33                     </netTcpBinding>
34              </bindings>
35              <client>
36                     <endpoint address="net.tcp://127.0.0.1:8000/ClientConsole/ClientConsoleCommunicator"
37                            binding="netTcpBinding" bindingConfiguration="NetTcpBinding_IClientConsoleCommunicator"
38                            contract="ClientService.IClientConsoleCommunicator" name="NetTcpBinding_IClientConsoleCommunicator">
39                            <identity>
40                                   <userPrincipalName value="mse08004@fhs-hagenberg.ac.at" />
41                            </identity>
42                     </endpoint>
43              </client>
44       </system.serviceModel>
45</configuration>
Note: See TracBrowser for help on using the repository browser.