try {
XMLElement xmlFile = new XMLElement(true);
InputStreamReader isr = new InputStreamReader(new FileInputStream(canonicalFName));
xmlFile.parseFromReader(isr);
AuctionServerManager.getInstance().fromXML(xmlFile);
} catch(IOException e) {
JConfig.log().handleException("Error loading XML file with auctions: " + canonicalFName, e);
}