Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/29/10 18:21:22 (14 years ago)
Author:
bfarka
Message:

added first service method and unittest for service
added abstract unit test for starting a service host (1046)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Services.Authentication Prototype/Service/App.config

    r3970 r3976  
    1 <?xml version="1.0" encoding="utf-8" ?>
     1<?xml version="1.0" encoding="utf-8" ?>
    22<configuration>
    33  <system.web>
     
    55  </system.web>
    66  <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>
    726 </system.serviceModel>
    827</configuration>
Note: See TracChangeset for help on using the changeset viewer.