Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/app.config @ 2517

Last change on this file since 2517 was 2517, checked in by gkronber, 15 years ago

Worked on plugin installation manager and update location service. #799

File size: 2.9 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3    <configSections>
4        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
5            <section name="HeuristicLab.PluginInfrastructure.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
6        </sectionGroup>
7    </configSections>
8    <applicationSettings>
9        <HeuristicLab.PluginInfrastructure.Properties.Settings>
10            <setting name="PluginDir" serializeAs="String">
11                <value>plugins</value>
12            </setting>
13            <setting name="User" serializeAs="String">
14                <value />
15            </setting>
16            <setting name="Organization" serializeAs="String">
17                <value />
18            </setting>
19        </HeuristicLab.PluginInfrastructure.Properties.Settings>
20    </applicationSettings>
21    <system.serviceModel>
22        <bindings>
23            <wsHttpBinding>
24                <binding name="WSHttpBinding_IUpdateLocation" closeTimeout="00:01:00"
25                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
26                    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
27                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
28                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
29                    allowCookies="false">
30                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
31                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
32                    <reliableSession ordered="true" inactivityTimeout="00:10:00"
33                        enabled="false" />
34                    <security mode="Message">
35                        <transport clientCredentialType="Windows" proxyCredentialType="None"
36                            realm="" />
37                        <message clientCredentialType="Windows" negotiateServiceCredential="true"
38                            algorithmSuite="Default" establishSecurityContext="true" />
39                    </security>
40                </binding>
41            </wsHttpBinding>
42        </bindings>
43        <client>
44            <endpoint address="http://localhost:59253/UpdateLocation.svc"
45                binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IUpdateLocation"
46                contract="UpdateLocationReference.IUpdateLocation" name="WSHttpBinding_IUpdateLocation">
47                <identity>
48                    <dns value="localhost" />
49                </identity>
50            </endpoint>
51        </client>
52    </system.serviceModel>
53</configuration>
Note: See TracBrowser for help on using the repository browser.