summaryrefslogtreecommitdiff
path: root/java/test/Ice/operations/Server.java
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2005-09-28 20:13:25 +0000
committerMark Spruiell <mes@zeroc.com>2005-09-28 20:13:25 +0000
commitcde323e241d6f22c9dd24e7f8b8f0550bbf86855 (patch)
tree9766c34c6a0ce9e8e353a33f36dacd4e505fa2c7 /java/test/Ice/operations/Server.java
parentadding thread-per-connection (diff)
downloadice-cde323e241d6f22c9dd24e7f8b8f0550bbf86855.tar.bz2
ice-cde323e241d6f22c9dd24e7f8b8f0550bbf86855.tar.xz
ice-cde323e241d6f22c9dd24e7f8b8f0550bbf86855.zip
adding UDP endpoint to some tests
Diffstat (limited to 'java/test/Ice/operations/Server.java')
-rw-r--r--java/test/Ice/operations/Server.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/test/Ice/operations/Server.java b/java/test/Ice/operations/Server.java
index 339964e8081..ebabf8fb42f 100644
--- a/java/test/Ice/operations/Server.java
+++ b/java/test/Ice/operations/Server.java
@@ -12,7 +12,7 @@ public class Server
private static int
run(String[] args, Ice.Communicator communicator)
{
- communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12345");
+ communicator.getProperties().setProperty("TestAdapter.Endpoints", "default -p 12345:udp");
Ice.ObjectAdapter adapter = communicator.createObjectAdapter("TestAdapter");
Ice.Identity id = Ice.Util.stringToIdentity("test");
adapter.add(new MyDerivedClassI(adapter, id), id);