Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/04/10 01:43:23 (14 years ago)
Author:
swagner
Message:

Worked on OKB (#1174)

Location:
branches/OKB/HeuristicLab.Services.OKB/3.3
Files:
2 edited
2 moved

Legend:

Unmodified
Added
Removed
  • branches/OKB/HeuristicLab.Services.OKB/3.3/HeuristicLab.Services.OKB-3.3.csproj

    r4492 r4548  
    120120  </ItemGroup>
    121121  <ItemGroup>
    122     <Compile Include="AdminService.cs" />
    123122    <Compile Include="Convert.cs" />
    124123    <Compile Include="AuthenticationService.cs" />
    125124    <Compile Include="Interfaces\IAuthenticationService.cs" />
    126     <Compile Include="Interfaces\IAdminService.cs" />
     125    <Compile Include="Interfaces\IOKBService.cs" />
     126    <Compile Include="OKBService.cs" />
    127127    <Compile Include="Properties\AssemblyInfo.cs" />
    128128  </ItemGroup>
  • branches/OKB/HeuristicLab.Services.OKB/3.3/Interfaces/IOKBService.cs

    r4547 r4548  
    2828namespace HeuristicLab.Services.OKB {
    2929  /// <summary>
    30   /// Interface of the OKB administration service.
     30  /// Interface of the OKB service.
    3131  /// </summary>
    3232  [ServiceContract(ProtectionLevel = ProtectionLevel.EncryptAndSign)]
    33   public interface IAdminService {
     33  public interface IOKBService {
    3434    #region Platform Methods
    3535    [OperationContract]
  • branches/OKB/HeuristicLab.Services.OKB/3.3/OKBService.cs

    r4547 r4548  
    2828namespace HeuristicLab.Services.OKB {
    2929  /// <summary>
    30   /// Implementation of the OKB administration service (interface <see cref="IAdminService"/>).
     30  /// Implementation of the OKB service (interface <see cref="IOKBService"/>).
    3131  /// </summary>
    3232  [ServiceBehavior(IncludeExceptionDetailInFaults = true)]
    33   public class AdminService : IAdminService {
     33  public class OKBService : IOKBService {
    3434    #region Platform Methods
    3535    public DataTransfer.Platform GetPlatform(long id) {
  • branches/OKB/HeuristicLab.Services.OKB/3.3/app.config

    r4492 r4548  
    6767
    6868    <services>
    69       <service name="HeuristicLab.Services.OKB.AdminService" behaviorConfiguration="DefaultServiceBehavior">
     69      <service name="HeuristicLab.Services.OKB.OKBService" behaviorConfiguration="DefaultServiceBehavior">
    7070        <endpoint address="mex" binding="mexHttpBinding" bindingConfiguration="DefaultMexHttpBinding" contract="IMetadataExchange" />
    71         <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.OKB.IAdminService" />
     71        <endpoint binding="wsHttpBinding" bindingConfiguration="DefaultWsHttpBinding" contract="HeuristicLab.Services.OKB.IOKBService" />
    7272        <host>
    7373          <baseAddresses>
    74             <add baseAddress="http://localhost:8732/Design_Time_Addresses/OKB-3.3/AdminService" />
     74            <add baseAddress="http://localhost:8732/Design_Time_Addresses/OKB-3.3/OKBService" />
    7575          </baseAddresses>
    7676        </host>
Note: See TracChangeset for help on using the changeset viewer.