posted 23 years ago
Hi Kathy ,
i had found out including external dtd in the dom.
see if this works,
//from package oracle.xml.parser.v2.XMLDocument and XMLDeclPI
XMLDocument doc = new XMLDocument();
XMLDeclPI decl = new XMLDeclPI("1.0",null,null,false);//version,encoding and standalone parameters
doc.appendChild(decl);
doc.setDoctype("rootelement","full path of the external dtd",null);// not sure of the last parameter.
bye,
lavanya