i have a context param as follows:
<context-param>
<param-name>myInitParam</param-name>
<param-value>myValue</param-value>
</context-param>
i want to get an init param in JSF 1x (exact version is 1.1.02) as follows:
<object>
<param name="HTTPPort" value="#{initParam.myInitParam}" />
but i am getting the compiler error in JSP:
the attributes for a standard action or an uninterpreted tag cannot be deferred expressions
please advise how to get init param in JSF 1x, and what is the reference for EL used in JSF 1x.