I found the problem! I forgot to call setIdAttributeNS(null, "Id", true); for
all id attributes in the xml document.
e.g.
NodeList allIds = findNodes("//*[@Id]", document);
for (int i = 0; i < allIds.getLength(); i++) {
Element id = (Element) allIds.item(i);
id.setIdAttributeNS(null, "Id", true);
}
--
View this message in context:
http://apache-xml-project.6118.n7.nabble.com/MissingResourceFailureException-tp42081p42082.html
Sent from the Apache XML - Security - Dev mailing list archive at Nabble.com.