Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.Services.Deployment.Test/app.config @ 2771

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

Implemented and tested rudimentary WCF service interface on top of the Linq2Sql data access layer. #860

File size: 3.5 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="100000000" 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                <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="100000000" maxReceivedMessageSize="10000000"
27                    messageEncoding="Text" textEncoding="utf-8" useDefaultWebProxy="true"
28                    allowCookies="false">
29                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="10000000"
30                        maxBytesPerRead="10000000" 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="UpdateService.IUpdate" name="WSHttpBinding_IUpdate">
46                <identity>
47                    <dns value="localhost" />
48                </identity>
49            </endpoint>
50            <endpoint address="http://localhost:8731/Design_Time_Addresses/HeuristicLab.Services.Deployment/Admin/"
51                binding="wsHttpBinding" bindingConfiguration="WSHttpBinding_IAdmin"
52                contract="AdminService.IAdmin" name="WSHttpBinding_IAdmin">
53                <identity>
54                    <dns value="localhost" />
55                </identity>
56            </endpoint>
57        </client>
58    </system.serviceModel>
59</configuration>
Note: See TracBrowser for help on using the repository browser.