Anyone know why the colon in my xpath seems to be screwing everything up? Anyone know how to fix this?
XPathFactory fac = ...
XPath xpath = ...
XPathExpression expr = xpath.compile("//context");
Object result = expr.evaluate(...); //this works;
expr = xpath.compile("//xbrli:context");
result = expr.evaluate(...); //this does not work