|
try
{
InitialContext context = new InitialContext();
Object obj=(Object)context.lookup("java:comp/env/"+name);
pageContext.setAttribute(name,obj,PageContext.PAGE _SCOPE);
}
catch(javax.naming.NamingException ne)
{
throw new JspException(ne.getMessage());
}
return EVAL_PAGE;
__________________
Your post count means nothing.
|