Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Hive/sources/HeuristicLab.Hive.New/HeuristicLab.Clients.Hive/3.3/app.config @ 4649

Last change on this file since 4649 was 4649, checked in by cneumuel, 13 years ago
  • moved db-context into datalayer
  • businesslayer only defines the transaction-scope
  • removed contextfactory
  • implemented convert-methods
  • made naming in db and domainobjects more consistent
  • changed wcf-service to be http-only (for now)

(#1233)

File size: 1.8 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<configuration>
3    <system.serviceModel>
4        <bindings>
5            <wsHttpBinding>
6                <binding name="HttpBinding" closeTimeout="00:01:00" openTimeout="00:01:00"
7                    receiveTimeout="00:10:00" sendTimeout="00:01:00" bypassProxyOnLocal="false"
8                    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" />
21                    </security>
22                </binding>
23            </wsHttpBinding>
24        </bindings>
25        <client>
26            <endpoint address="http://localhost:9000/HiveService" binding="wsHttpBinding"
27                bindingConfiguration="HttpBinding" contract="HeuristicLab.Clients.Hive.IHiveService"
28                name="HttpBinding">
29                <identity>
30                    <userPrincipalName value="S0920454044@hagenberg.fhooe.at" />
31                </identity>
32            </endpoint>
33        </client>
34    </system.serviceModel>
35</configuration>
Note: See TracBrowser for help on using the repository browser.