Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/app.config @ 2814

Last change on this file since 2814 was 2814, checked in by gkronber, 14 years ago

Updates service reference. #860 (Deployment server for plugin installation from web locations)

File size: 4.9 KB
RevLine 
[2]1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3    <configSections>
[854]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" />
[2]6        </sectionGroup>
7    </configSections>
[854]8    <applicationSettings>
[2]9        <HeuristicLab.PluginInfrastructure.Properties.Settings>
[2504]10            <setting name="User" serializeAs="String">
[2597]11                <value>-</value>
[2504]12            </setting>
13            <setting name="Organization" serializeAs="String">
[2597]14                <value>-</value>
[2504]15            </setting>
[2527]16            <setting name="UpdateLocations" serializeAs="Xml">
17                <value>
18                    <ArrayOfString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19                        xmlns:xsd="http://www.w3.org/2001/XMLSchema">
20                        <string>http://localhost:59253/UpdateLocation.svc</string>
21                    </ArrayOfString>
22                </value>
23            </setting>
[2]24        </HeuristicLab.PluginInfrastructure.Properties.Settings>
[854]25    </applicationSettings>
[2517]26    <system.serviceModel>
[2812]27        <bindings>
28            <wsHttpBinding>
[2814]29                <binding name="WSHttpBinding_IUpdate2" closeTimeout="00:01:00"
[2812]30                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
31                    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
32                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
33                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
34                    allowCookies="false">
35                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
36                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
37                    <reliableSession ordered="true" inactivityTimeout="00:10:00"
38                        enabled="false" />
39                    <security mode="Message">
40                        <transport clientCredentialType="Windows" proxyCredentialType="None"
41                            realm="" />
42                        <message clientCredentialType="Windows" negotiateServiceCredential="true"
43                            algorithmSuite="Default" establishSecurityContext="true" />
44                    </security>
45                </binding>
[2814]46                <binding name="WSHttpBinding_IAdmin2" closeTimeout="00:01:00"
[2812]47                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
48                    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
49                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
50                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
51                    allowCookies="false">
52                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
53                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
54                    <reliableSession ordered="true" inactivityTimeout="00:10:00"
55                        enabled="false" />
56                    <security mode="Message">
57                        <transport clientCredentialType="Windows" proxyCredentialType="None"
58                            realm="" />
59                        <message clientCredentialType="Windows" negotiateServiceCredential="true"
60                            algorithmSuite="Default" establishSecurityContext="true" />
61                    </security>
62                </binding>
63            </wsHttpBinding>
64        </bindings>
65        <client>
66            <endpoint address="http://localhost:8731/Design_Time_Addresses/HeuristicLab.Services.Deployment/Update/"
[2814]67                binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IUpdate2"
[2812]68                contract="HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate"
[2814]69                name="WSHttpBinding_IUpdate2">
[2812]70                <identity>
71                    <dns value="localhost" />
72                </identity>
73            </endpoint>
74            <endpoint address="http://localhost:8731/Design_Time_Addresses/HeuristicLab.Services.Deployment/Admin/"
[2814]75                binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdmin2"
[2812]76                contract="HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin"
[2814]77                name="WSHttpBinding_IAdmin2">
[2812]78                <identity>
79                    <dns value="localhost" />
80                </identity>
81            </endpoint>
82        </client>
[2517]83    </system.serviceModel>
[2]84</configuration>
Note: See TracBrowser for help on using the repository browser.