Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Hive.Client.Communication/ServiceLocator.cs @ 929

Last change on this file since 929 was 929, checked in by msteinbi, 15 years ago

Implementation of UserRoleManager (#417)

File size: 601 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.ServiceModel;
6
7namespace HeuristicLab.Hive.Client.Communication {
8  public class ServiceLocator {
9    private static ClientCommunicatorClient proxy = null;
10   
11    public static ClientCommunicatorClient GetClientCommunicator() {
12      if (proxy == null) {
13        proxy = new ClientCommunicatorClient(
14          new NetTcpBinding(),
15          new EndpointAddress("net.tcp://10.20.53.2:9000/HiveServer/ClientCommunicator")
16          );
17      }
18
19      return proxy;
20    }
21  }
22}
Note: See TracBrowser for help on using the repository browser.