diff options
author | Matthew Newhook <matthew@zeroc.com> | 2009-03-24 12:31:31 -0230 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2009-03-24 12:31:31 -0230 |
commit | 4cc5d77c383b6c91c3af9fe44df9687bb9b15580 (patch) | |
tree | 64ce3d6cf35b15497de50f298f7225a8c72f64b6 /java/test/Ice/operations/Server.java | |
parent | Merge commit 'origin/R3_3_branch' (diff) | |
download | ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.tar.bz2 ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.tar.xz ice-4cc5d77c383b6c91c3af9fe44df9687bb9b15580.zip |
Merged android-testsuite branch.
Diffstat (limited to 'java/test/Ice/operations/Server.java')
-rw-r--r-- | java/test/Ice/operations/Server.java | 70 |
1 files changed, 25 insertions, 45 deletions
diff --git a/java/test/Ice/operations/Server.java b/java/test/Ice/operations/Server.java index 676ab7a47e4..babada1d50a 100644 --- a/java/test/Ice/operations/Server.java +++ b/java/test/Ice/operations/Server.java @@ -7,59 +7,39 @@ // // ********************************************************************** -public class Server +package test.Ice.operations; + +public class Server extends test.Util.Application { - private static int - run(String[] args, Ice.Communicator communicator) + public int run(String[] args) { - communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010:udp"); - Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter"); - adapter.add(new MyDerivedClassI(), communicator.stringToIdentity("test")); + communicator().getProperties().setProperty("TestAdapter.Endpoints", "default -p 12010:udp"); + Ice.ObjectAdapter adapter = communicator().createObjectAdapter("TestAdapter"); + adapter.add(new MyDerivedClassI(), communicator().stringToIdentity("test")); adapter.activate(); - communicator.waitForShutdown(); - return 0; + return WAIT; } - public static void - main(String[] args) + protected Ice.InitializationData getInitData(Ice.StringSeqHolder argsH) { - int status = 0; - Ice.Communicator communicator = null; - - try - { - Ice.StringSeqHolder argsH = new Ice.StringSeqHolder(args); - Ice.InitializationData initData = new Ice.InitializationData(); - initData.properties = Ice.Util.createProperties(argsH); - // - // Its possible to have batch oneway requests dispatched - // after the adapter is deactivated due to thread - // scheduling so we supress this warning. - // - initData.properties.setProperty("Ice.Warn.Dispatch", "0"); - - communicator = Ice.Util.initialize(argsH, initData); - status = run(argsH.value, communicator); - } - catch(Exception ex) - { - ex.printStackTrace(); - status = 1; - } + Ice.InitializationData initData = new Ice.InitializationData(); + initData.properties = Ice.Util.createProperties(argsH); + // + // Its possible to have batch oneway requests dispatched + // after the adapter is deactivated due to thread + // scheduling so we supress this warning. + // + initData.properties.setProperty("Ice.Warn.Dispatch", "0"); + initData.properties.setProperty("Ice.Package.Test", "test.Ice.operations"); + initData.properties.setProperty("TestAdapter.Endpoints", "default -p 12010:udp"); + return initData; + } - if(communicator != null) - { - try - { - communicator.destroy(); - } - catch(Ice.LocalException ex) - { - ex.printStackTrace(); - status = 1; - } - } + public static void main(String[] args) + { + Server c = new Server(); + int status = c.main("Server", args); System.gc(); System.exit(status); |