E
Eqbal Z
Is there a way for me to get parameter values from web.xml file inside
of a bean?
I have parameters like the following in my web.xml file:
<context-param>
<param-name>userName</param-name>
<param-value>xxxx</param-value>
</context-param>
<context-param>
<param-name>password</param-name>
<param-value>yyyy</param-value>
</context-param>
How do I get these values inside of a bean thats used in a JSP page. I
am using WAS 4.0.5 app server (its servlet 2.2 specs). I do not want
to use sessions.
of a bean?
I have parameters like the following in my web.xml file:
<context-param>
<param-name>userName</param-name>
<param-value>xxxx</param-value>
</context-param>
<context-param>
<param-name>password</param-name>
<param-value>yyyy</param-value>
</context-param>
How do I get these values inside of a bean thats used in a JSP page. I
am using WAS 4.0.5 app server (its servlet 2.2 specs). I do not want
to use sessions.