public static void main(String[] args)
{
try
{
CmdArgs cmdArgs = new CmdArgs("Server", args);
cmdArgs.processArgs();
// translate any properties set on the commandline but after the
// class name to a properties
java.util.Properties props = ObjectUtil.argsToProps(args);
String implName = props.getProperty("jacorb.implname", "EchoServer");
TestUtils.getLogger().debug("SERVER: jacorb.implname: <" + implName + ">");