| Author |
jsp init parameters
|
Sharma Anjali
Ranch Hand
Joined: Feb 22, 2005
Posts: 63
|
|
i am trying to retreive init paramters in my jsp. Here's the DD <servlet> <servlet-name>T</servlet-name> <jsp-file>/A.jsp</jsp-file> <init-param> <param-name>email</param-name> <param-value>abc@zyz.com</param-value> </init-param> </servlet> and this is in the jsp page <%= config.getInitParameter("email") %> But this returns null. Plz tell me where am I doing it wrong?
|
 |
srinath anand
Ranch Hand
Joined: Nov 20, 2001
Posts: 30
|
|
Hi Anjali, You need this in your web.xml also: <servlet-mapping> <servlet-name>T</servlet-name> <url-pattern>*.jsp</url-pattern> </servlet-mapping>
|
SCJP2,SCWCD 1.4
|
 |
 |
|
|
subject: jsp init parameters
|
|
|