Hello,
For us the following works, in your web.xml you have to specify your
parameters like:
<context-param>
<param-name>whatever</param-name>
<param-value>whateverValue</param-value>
<description>whatever description</description>
</context-param>
Then we use context.getInitParameter("whatever") to retrieve a
parameter.
HTH,
miHam