Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Services.Authentication Prototype/Service/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: 1.6 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3  <system.web>
4    <compilation debug="true" />
5      <membership defaultProvider="HeuristiclabMemberShipProvider" userIsOnlineTimeWindow="15">
6        <providers>
7          <clear/>
8          <add
9            name="HeuristiclabMemberShipProvider"
10            type="Service.Provider.HeuristicLabMembershipProvider, Service"
11            passwordFormat= "Hashed"/>
12        </providers>
13      </membership>
14  </system.web>
15  <system.serviceModel>
16    <behaviors>
17      <serviceBehaviors>
18        <serviceCredentials>
19          <userNameAuthentication      membershipProviderName="HeuristiclabMemberShipProvider" />
20        </serviceCredentials>
21        <behavior name="HttpServiceBehavior">
22          <serviceMetadata httpGetEnabled="true" httpGetUrl="http://127.0.0.1:8888/metadata" />
23          <serviceDebug httpHelpPageUrl="http://127.0.0.1:8888/debug" />
24        </behavior>
25      </serviceBehaviors>
26    </behaviors>
27    <services>
28      <service behaviorConfiguration="HttpServiceBehavior" name="Service.Services.Administration.AuthorizationManagementService">
29        <endpoint address="http://127.0.0.1:8888/AuthorizationManagementEndpoint"
30          binding="basicHttpBinding" bindingConfiguration="" contract="Service.Services.Administration.IAuthorizationManagementService" />
31        <host>
32          <baseAddresses>
33            <add baseAddress="http://localhost:8080/AuthorizationManagement"/>
34          </baseAddresses>
35        </host>
36      </service>
37    </services>
38 </system.serviceModel>
39</configuration>
Note: See TracBrowser for help on using the repository browser.