view test/org/dancres/blitz/remote/Test.java @ 18:4580bb12db30

Separate command execution from command logging.
author Dan Creswell <dan.creswell@gmail.com>
date Sun, 05 Jul 2009 16:26:25 +0100
parents 3dc0c5604566
children
line wrap: on
line source

package org.dancres.blitz.remote;

/**
   Simple skeleton to bring up a Blitz server and see if it has a proxy.
   Blitz, of course, will advertise itself to JINI LUS instances but that's
   okay and another means of checking things work.
 */
public class Test {
    public static void main(String anArgs[]) {
        try {
            BlitzServiceImpl myServer = new BlitzServiceImpl(anArgs, null);

            System.out.println("Stub: " + myServer.getProxy());
            System.out.println("Proxy: " + myServer.getServiceProxy());

            Object myLock = new Object();

            synchronized(myLock) {
                myLock.wait();
            }

        } catch (Exception anE) {
            System.out.println("Ooops");
            anE.printStackTrace(System.out);
        }
    }
}