//usage();
//System.exit(0);
}
// Extract all command line parameters.
Config config = new Config();
config.setOptions(args);
String brokerDetails = config.getHost() + ":" + config.getPort();
String virtualpath = "test";
String destinationName = config.getDestination();
if (destinationName == null)
{
destinationName = DEFAULT_DESTINATION_NAME;
}
String selector = config.getSelector();
boolean transacted = config.isTransacted();
boolean persistent = config.usePersistentMessages();
boolean pubsub = config.isPubSub();
boolean verbose = true;
//String selector = null;
// Instantiate the ping pong client with the command line options and start it running.