URL configurl = FileLocator.LocateURL(dictionaryConfigURL, "dictionaryconfig.xml");
org.jdom.Document document = builder.build(configurl);
XPath x = XPath.newInstance("//dictionary[@id='CF_DICTIONARY']/version[@key=\'"+ versionkey +"\']/grammar[1]");
Element grammerElement = (Element)x.selectSingleNode(document);
dic = new SQLSyntaxDictionary();
((CFSyntaxDictionary)dic).loadDictionary(grammerElement.getAttributeValue("location"));
dictionaryVersionCache.put(versionkey, dic);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block