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? I have tried placing the copies of the dtd in every directory I could think of including the working directory and the directory with the xml. If I use an absolute path (file:///c:/project/src/xml/document.dtd), it works great, but I don't want to require a specific drive or directory.
Thanks
