Reading from XML file in browser
I've written an applet that reads from and write's to an XML file.
This works fine in the appletviewer but when i open the applet in the browser i get a nullpointerexception because the xml-file is not loaded and parsed.
Reading the xml file:
DocumentBuilder builder = factory.newDocumentBuilder();
document = builder.parse("data.xml");
Is there a way to acces the xml-file from the browser?

