blob: fc207ff91ad496ce5091475cfd55207d8b1c9849 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
using Test;
namespace Ice
{
namespace location
{
public class Server : TestHelper
{
public override void run(string[] args)
{
//
// Register the server manager. The server manager creates a new
// 'server'(a server isn't a different process, it's just a new
// communicator and object adapter).
//
Ice.Properties properties = createTestProperties(ref args);
properties.setProperty("Ice.ThreadPool.Server.Size", "2");
using(var communicator = initialize(properties))
{
communicator.getProperties().setProperty("ServerManagerAdapter.Endpoints", getTestEndpoint(0));
Ice.ObjectAdapter adapter = communicator.createObjectAdapter("ServerManagerAdapter");
//
// We also register a sample server locator which implements the
// locator interface, this locator is used by the clients and the
// 'servers' created with the server manager interface.
//
ServerLocatorRegistry registry = new ServerLocatorRegistry();
Ice.Object @object = new ServerManagerI(registry, this);
adapter.add(@object, Ice.Util.stringToIdentity("ServerManager"));
registry.addObject(adapter.createProxy(Ice.Util.stringToIdentity("ServerManager")));
Ice.LocatorRegistryPrx registryPrx =
Ice.LocatorRegistryPrxHelper.uncheckedCast(adapter.add(registry, Ice.Util.stringToIdentity("registry")));
ServerLocator locator = new ServerLocator(registry, registryPrx);
adapter.add(locator, Ice.Util.stringToIdentity("locator"));
adapter.activate();
serverReady();
communicator.waitForShutdown();
}
}
public static int Main(string[] args)
{
return TestDriver.runTest<Server>(args);
}
}
}
}
|