Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/23/10 14:40:19 (14 years ago)
Author:
cneumuel
Message:

added role-permission checks, updated service reference (#1168)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3-HiveMigration/sources/HeuristicLab.Hive/HeuristicLab.Hive.Server.Core/3.3/app.config

    r4285 r4289  
    2626
    2727  <system.serviceModel>
     28   
    2829    <bindings>
     30     
    2931      <wsHttpBinding>
    3032        <binding name="HttpBinding">
     
    3638    </bindings>
    3739    <behaviors>
     40     
    3841      <serviceBehaviors>
    3942        <behavior name="ServiceBehaviour">
     
    5154    </behaviors>
    5255    <services>
     56     
    5357      <service behaviorConfiguration="ServiceBehaviour" name="HeuristicLab.Hive.Server.Core.SlaveFacade">
    54         <endpoint address="http://localhost:9000/HiveServer/" binding="wsHttpBinding"
     58        <endpoint address="http://locahost:9000/HiveServer" binding="wsHttpBinding"
    5559          bindingConfiguration="HttpBinding" name="HiveServerHttpEndpoint"
    5660          contract="HeuristicLab.Hive.Contracts.Interfaces.ISlaveFacade" />
    57         <endpoint address="mex" binding="mexHttpBinding" contract="HeuristicLab.Hive.Contracts.Interfaces.ISlaveFacade" />
     61        <endpoint address="http://locahost:9000/HiveServer/mex" binding="mexHttpBinding"
     62          name="HiveServerMexEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.ISlaveFacade" />
    5863      </service>
    5964      <service behaviorConfiguration="ServiceBehaviour" name="HeuristicLab.Hive.Server.Core.ServerConsoleFacade">
    60         <endpoint address="http://localhost:9000/HiveServerConsole/"
    61           binding="wsHttpBinding" bindingConfiguration="HttpBinding" name="ServerConsoleHttpEndpoint"
     65        <endpoint address="http://locahost:9000/HiveServerConsole" binding="wsHttpBinding"
     66          bindingConfiguration="HttpBinding" name="ServerConsoleHttpEndpoint"
    6267          contract="HeuristicLab.Hive.Contracts.Interfaces.IServerConsoleFacade" />
    63         <endpoint address="mex" binding="mexHttpBinding" contract="HeuristicLab.Hive.Contracts.Interfaces.IServerConsoleFacade" />
     68        <endpoint address="http://locahost:9000/HiveServerConsole/mex"
     69          binding="mexHttpBinding" name="ServerConsoleMexEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.IServerConsoleFacade" />
    6470      </service>
    6571      <service behaviorConfiguration="ServiceBehaviour" name="HeuristicLab.Hive.Server.Core.ExecutionEngineFacade">
    66         <endpoint address="http://localhost:9000/ExecutionEngine/" binding="wsHttpBinding"
     72        <endpoint address="http://locahost:9000/ExecutionEngine" binding="wsHttpBinding"
    6773          bindingConfiguration="HttpBinding" name="ExecutionEngineHttpEndpoint"
    6874          contract="HeuristicLab.Hive.Contracts.Interfaces.IExecutionEngineFacade" />
    69         <endpoint address="mex" binding="mexHttpBinding" contract="HeuristicLab.Hive.Contracts.Interfaces.IExecutionEngineFacade" />
     75        <endpoint address="http://locahost:9000/ExecutionEngine/mex"
     76          binding="mexHttpBinding" name="ExecutionEngineMexEndpoint" contract="HeuristicLab.Hive.Contracts.Interfaces.IExecutionEngineFacade" />
    7077      </service>
    7178    </services>
Note: See TracChangeset for help on using the changeset viewer.