> It sounds like a simple question, but I have not been able to come up with > an answer, either on the web or searching through archives. > > I have an xml in a relative path from my working directory: > src/xml/document.xml > > Inside of which I have a tag: > <!DOCTYPE document SYSTEM "document.dtd"> > > Where does it look for it?
What parser are you using ? Xerces2 will look for "document.dtd" relative to xml file. You can use EntityResolver to feed dtd entity to parser. Neeraj --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
