I am currently working on the development of an Apache CXF Web Service with XMLBeans binding instead of the default JAXB binding. I am compiling and running the code with Java 1.6. I get a "DOM Level 3 Not implemented" error at runtime for the following code snippet :
ExtType[] extTypeList = p.getExtArray();
for (ExtType extType : extTypeList) {
Node node = extType.getDomNode();
NodeList objList = node.getChildNodes();
for (int i = 0; i < objList.getLength(); ++i) {
Node text = (Node) objList.item(i);
if (text.getNodeName() != null
&& text.getNodeName() == XmlConstant.NODE_NAME) {
info.setDuration(text
.getTextContent());
}
}
}
The exact error displayed in JBoss is as follows :
java.lang.RuntimeException: DOM Level 3 Not implemented
at org.apache.xmlbeans.impl.store.DomImpl._node_getTextContent(DomImpl.java:2516)
at org.apache.xmlbeans.impl.store.Xobj$NodeXobj.getTextContent(Xobj.java:2607)
From the above error message, it is clear that the getTextContent method is causing the exexception because the DOM level 3 API's are not found at run-time. How do I eliminate this error? I am guessing I'll have to figure out which jar contains the DOM API's and delete all dom related classes from that jar so that the default DOM API's that come along with jdk are used instead. Alternately, is there a way to get the text contents of an xml tag using DOM without relying on the getTextContent method?