}
//Setting the ConnectionFactory such that it will use scout
System.setProperty("javax.xml.registry.ConnectionFactoryClass","org.apache.ws.scout.registry.ConnectionFactoryImpl");
// Create a message, assign it a UID, and fill in call information
Message esbMessage = MessageFactory.getInstance().getMessage();
Call call = new Call();
call.setMessageID(new URI(UUID.randomUUID().toString()));
esbMessage.getHeader().setCall(call);
// set body contents with args[2], and send
esbMessage.getBody().add(args[2]);