Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.DeploymentService.AdminClient/app.config @ 2802

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

Worked on administration front-end for deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3    <system.serviceModel>
4        <bindings>
5            <wsHttpBinding>
6                <binding name="WSHttpBinding_IAdmin" 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="10000000"
10                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
11                    allowCookies="false">
12                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="10000000"
13                        maxBytesPerRead="10000000" 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            </wsHttpBinding>
24        </bindings>
25        <client>
26            <endpoint address="http://localhost:8731/Design_Time_Addresses/HeuristicLab.Services.Deployment/Admin/"
27                binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdmin"
28                contract="AdminService.IAdmin" name="WSHttpBinding_IAdmin">
29                <identity>
30                    <dns value="localhost" />
31                </identity>
32            </endpoint>
33        </client>
34    </system.serviceModel>
35</configuration>
Note: See TracBrowser for help on using the repository browser.