Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Services.Authentication Prototype/UnitTests/app.config @ 4006

Last change on this file since 4006 was 4002, checked in by bfarka, 14 years ago

made struture changes in persistence classes and provider

File size: 3.2 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3    <system.serviceModel>
4        <bindings>
5            <basicHttpBinding>
6                <binding name="BasicHttpBinding_IAuthorizationManagementService"
7                    closeTimeout="00:01:00" openTimeout="00:01:00" receiveTimeout="00:10:00"
8                    sendTimeout="00:01:00" allowCookies="false" bypassProxyOnLocal="false"
9                    hostNameComparisonMode="StrongWildcard" maxBufferSize="65536"
10                    maxBufferPoolSize="524288" maxReceivedMessageSize="65536"
11                    messageEncoding="Text" textEncoding="utf-8" transferMode="Buffered"
12                    useDefaultWebProxy="true">
13                    <readerQuotas maxDepth="32" maxStringContentLength="8192" maxArrayLength="16384"
14                        maxBytesPerRead="4096" maxNameTableCharCount="16384" />
15                    <security mode="None">
16                        <transport clientCredentialType="None" proxyCredentialType="None"
17                            realm="">
18                            <extendedProtectionPolicy policyEnforcement="Never" />
19                        </transport>
20                        <message clientCredentialType="UserName" algorithmSuite="Default" />
21                    </security>
22                </binding>
23            </basicHttpBinding>
24        </bindings>
25        <client>
26            <endpoint address="http://127.0.0.1:8888/AuthorizationManagementEndpoint"
27                binding="basicHttpBinding" bindingConfiguration="BasicHttpBinding_IAuthorizationManagementService"
28                contract="ServiceManagementRemote.IAuthorizationManagementService"
29                name="BasicHttpBinding_IAuthorizationManagementService" />
30        </client>
31
32
33
34
35     
36     
37     
38    </system.serviceModel>
39    <system.web>
40      <compilation debug="true" />
41      <membership defaultProvider="HeuristiclabMemberShipProvider" userIsOnlineTimeWindow="15">
42        <providers>
43          <clear/>
44          <add
45            name="HeuristiclabMemberShipProvider"
46            type="Service.Provider.HeuristicLabMembershipProvider, Service"
47            passwordFormat= "Hashed"/>
48        </providers>
49      </membership>
50    </system.web>
51 
52  <system.serviceModel>
53    <behaviors>
54      <serviceBehaviors>
55        <behavior name="HttpServiceBehavior">
56          <serviceMetadata httpGetEnabled="true" httpGetUrl="http://127.0.0.1:8888/metadata" />
57          <serviceDebug httpHelpPageUrl="http://127.0.0.1:8888/debug" />
58        </behavior>
59      </serviceBehaviors>
60    </behaviors>
61    <services>
62      <service behaviorConfiguration="HttpServiceBehavior" name="Service.Services.Administration.AuthorizationManagementService">
63        <endpoint address="http://127.0.0.1:8888/AuthorizationManagementEndpoint"
64          binding="basicHttpBinding" bindingConfiguration="" contract="Service.Services.Administration.IAuthorizationManagementService" />
65        <host>
66          <baseAddresses>
67            <add baseAddress="http://localhost:8080/AuthorizationManagement"/>
68          </baseAddresses>
69        </host>
70      </service>
71    </services>
72  </system.serviceModel>
73</configuration>
Note: See TracBrowser for help on using the repository browser.