RE: [JSTL] Exposing CONTEXT-PARAM defined elements in a JSP

2004-09-17 Thread Adrian Beech
September 2004 1:16 AM To: Tag Libraries Users List Subject: Re: [JSTL] Exposing CONTEXT-PARAM defined elements in a JSP Adrian Beech wrote: TITLEc:out value='${initParams[applicationName]}'//TITLE ... it's initParam -- singular -- c:out value='${initParam[applicationName]}'/ or c:out value

Re: [JSTL] Exposing CONTEXT-PARAM defined elements in a JSP

2004-09-17 Thread Hassan Schroeder
Adrian Beech wrote: Is initParam[...] JSTL 1.1 specific? I can get TITLEc:out value='${initParam[applicationName]}'//TITLE to work under Tomcat 5.0 with JSTL 1.1 but not under Tomcat 4.1.24 with JSTL 1.0. Nope, both of the below work fine on my 4.1.30 systems. c:out

Re: [JSTL] Exposing CONTEXT-PARAM defined elements in a JSP

2004-09-12 Thread Dima Gutzeit
The following will work on 1.1: c:out value='%= config.getServletContext().getInitParameter(applicationName) %'/ I know that it is not that elegant, but it works :-) - Original Message - From: Adrian Beech [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, September 12, 2004 12:32