I am trying to read the an xml configuration from a jar file deployed to dm-server
here is the code
Reader fileReader = null;
try {
fileReader = new FileReader("test.xml");
} catch (FileNotFoundException fnfex) {
fnfex.printStackTrace();
} catch (IOException ioex) {
ioex.printStackTrace();
}
i was able to read it if i just write a junit test w/o the jar and w/o the dm-server.
the test is packed into the jar and is at the root of the jar file.
please help!!!!
thanks, A