Hello,

I am a newbie running Apache Tomcat/5.5.20.

My web.xml has these entries:

<context-param>
  <param-name>EmailId</param-name>
  <param-value>[EMAIL PROTECTED]</param-value>
</context-param>
        
<servlet>
  <servlet-name>Test JSP</servlet-name>
  <jsp-file>/testjsp.jsp</jsp-file>
</servlet>


I have this in testjsp.jsp:

<html>
<body>
PLEASE CONTACT: ${applicationScope.EmailId}
<br>
More contact: <%=
application.getAttribute("EmailId")%>
</body>
</html>

BUT, I don't get these values ("EmailId") on the web
page that is output. But I can see from the servlet
generated, the automatic object, - "application", is
initialized. (Also I am not doing ELignore explcitly
anywhere). I cannot figure out what am I doing wrong
or I am not looking in right reference places. Please
help.

Thanks in advance.

Regards
Raj


__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 

---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to