The file is relative to your web-xml file. If the entry looks like this, ie in the same directory as web-xml:
<init-param>
<param-name>filePath</param-name>
<param-value>./file.prop</param-value>
</init-param>
Then in your doGet or doPost, you can quickly
test it like this:
out.println("file = " + getServletConfig().getInitParameter("filePath"));
This will print:
file = ./file.prop
[ October 10, 2003: Message edited by: Roger Chung-Wee ]