File f1 = new File(configDirectory+File.separatorChar+mappingfile);
File f2 = new File(configDirectory+File.separatorChar+xmlconfig);
if (f1.exists() && f2.exists()) {
Mapping mapping = new Mapping();
try {
mapping.loadMapping(f1.getPath());
Unmarshaller unmar = new Unmarshaller(mapping);
unmar.setDebug(true);
baseobj=(JoBoBase)unmar.unmarshal(new InputSource(f2.getPath()));
log.info("configured from XML");