Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Advanced/DeploymentService/output.config @ 2811

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

Fixed service references in plugin infrastructure. #860 (Deployment server for plugin installation from web locations)

File size: 3.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3    <system.serviceModel>
4        <bindings>
5            <wsHttpBinding>
6                <binding name="WSHttpBinding_IUpdate" closeTimeout="00:01:00"
7                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
8                    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
9                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
10                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
11                    allowCookies="false">
12                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
13                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
14                    <reliableSession ordered="true" inactivityTimeout="00:10:00"
15                        enabled="false" />
16                    <security mode="Message">
17                        <transport clientCredentialType="Windows" proxyCredentialType="None"
18                            realm="" />
19                        <message clientCredentialType="Windows" negotiateServiceCredential="true"
20                            algorithmSuite="Default" establishSecurityContext="true" />
21                    </security>
22                </binding>
23                <binding name="WSHttpBinding_IAdmin" closeTimeout="00:01:00"
24                    openTimeout="00:01:00" receiveTimeout="00:10:00" sendTimeout="00:01:00"
25                    bypassProxyOnLocal="false" transactionFlow="false" hostNameComparisonMode="StrongWildcard"
26                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
27                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
28                    allowCookies="false">
29                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
30                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
31                    <reliableSession ordered="true" inactivityTimeout="00:10:00"
32                        enabled="false" />
33                    <security mode="Message">
34                        <transport clientCredentialType="Windows" proxyCredentialType="None"
35                            realm="" />
36                        <message clientCredentialType="Windows" negotiateServiceCredential="true"
37                            algorithmSuite="Default" establishSecurityContext="true" />
38                    </security>
39                </binding>
40            </wsHttpBinding>
41        </bindings>
42        <client>
43            <endpoint address="http://localhost:8731/Design_Time_Addresses/HeuristicLab.Services.Deployment/Update/"
44                binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IUpdate"
45                contract="HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IUpdate"
46                name="WSHttpBinding_IUpdate">
47                <identity>
48                    <dns value="localhost" />
49                </identity>
50            </endpoint>
51            <endpoint address="http://localhost:8731/Design_Time_Addresses/HeuristicLab.Services.Deployment/Admin/"
52                binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdmin"
53                contract="HeuristicLab.PluginInfrastructure.Advanced.DeploymentService.IAdmin"
54                name="WSHttpBinding_IAdmin">
55                <identity>
56                    <dns value="localhost" />
57                </identity>
58            </endpoint>
59        </client>
60    </system.serviceModel>
61</configuration>
Note: See TracBrowser for help on using the repository browser.