Free cookie consent management tool by TermsFeed Policy Generator

source: branches/CEDMA-Refactoring-Ticket419/HeuristicLab.Hive.Client.Communication/ServiceLocator.cs @ 1109

Last change on this file since 1109 was 882, checked in by kgrading, 16 years ago

moved the appdomain creator (#410)

File size: 604 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://192.168.132.1:9000/HiveServer/ClientCommunicator")
16          );
17      }
18
19      return proxy;
20    }
21  }
22}
Note: See TracBrowser for help on using the repository browser.