Configuration cfg=new ConfigurationParser().parse(
"example/"+Constants.DEFAULT_CONFIG_FILE);
Executor executor=new DefaultExecutor(cfg);
ConvertableObjectSource os = new HashMapObjectSource();
os.set("helloTo", "friend");
os.set("helloRepeat", 3);
os.set("genericStringInput", "11");
os.set("genericStringArrayInput", new String[]{"11", "22", "33"});
printDiv();
executor.execute("helloXml", os);
printDiv();