/* get an input stream */
InputStream f = null;
f = cl.getResourceAsStream(configfile);
if (f == null)
throw new InvalidUserDataException("*** can not load config file "+configfile);
props = new Properties();
props.load(f);
f.close();
} catch (Exception e) {