summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Latency/java_client.java
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Latency/java_client.java')
-rw-r--r--TAO/performance-tests/Latency/java_client.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/TAO/performance-tests/Latency/java_client.java b/TAO/performance-tests/Latency/java_client.java
deleted file mode 100644
index 09c55654d9d..00000000000
--- a/TAO/performance-tests/Latency/java_client.java
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// $Id$
-//
-
-import java.io.*;
-
-public class java_client {
-
- public static void main(String[] args) {
- // Initialize the ORB.
- org.omg.CORBA.ORB orb = org.omg.CORBA.ORB.init(args, null);
-
- // Read the AccountManager's IOR from a file
- Test test = null;
- try {
- LineNumberReader input =
- new LineNumberReader(new FileReader("test.ior"));
- org.omg.CORBA.Object object = orb.string_to_object(input.readLine());
- test = TestHelper.narrow(object);
- }
- catch(java.io.IOException e) {
- System.out.println("Exception: " + e);
- System.exit(1);
- }
-
- // use args[0] as the number of iterations.
- Long value = new Long (args.length > 0 ? args[0] : "10000");
-
- long iterations = value.longValue ();
-
- // Request the account manager to open a named account.
- for (int i = 0; i != iterations; ++i) {
- test.test_method (0);
- }
- test.shutdown ();
- }
-
-}