Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/HeuristicLab.Services.Authentication Prototyp/HeuristicLab.Services.Authentication Prototype/Service/App.config @ 4427

Last change on this file since 4427 was 4427, checked in by mholper, 14 years ago
File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3  <system.web>
4    <compilation debug="true" />
5  </system.web>
6  <system.serviceModel>
7    <behaviors>
8      <serviceBehaviors>
9        <behavior name="HttpServiceBehavior">
10          <serviceMetadata httpGetEnabled="true" httpGetUrl="http://127.0.0.1:8888/metadata" />
11          <serviceDebug httpHelpPageUrl="http://127.0.0.1:8888/debug" />
12        </behavior>
13      </serviceBehaviors>
14    </behaviors>
15    <services>
16      <service behaviorConfiguration="HttpServiceBehavior" name="Service.Services.Administration.AuthorizationManagementService">
17        <endpoint address="http://127.0.0.1:8888/AuthorizationManagementEndpoint"
18          binding="basicHttpBinding" bindingConfiguration="" contract="Service.Services.Administration.IAuthorizationManagementService" />
19        <host>
20          <baseAddresses>
21            <add baseAddress="http://localhost:8080/AuthorizationManagement"/>
22          </baseAddresses>
23        </host>
24      </service>
25    </services>
26 </system.serviceModel>
27</configuration>
Note: See TracBrowser for help on using the repository browser.