Hi there,
I am using <c:out> to render values on a jsp.
<c:out value="${local_object.url}"/> works fine,
but when using
<c:out value="${jar_object.url}"/> I get the ServletException:
An error occurred while evaluating custom action attribute "value" with
value "${jar_object.url}": Unable to find a value for "url" in object of
class "package.jar_object" using operator "."
I can get the value when using scriptlet on the same jsp
<%
String url = jar_object.getUrl();
%>
Does anyone know what I miss in the jar_object to make it avalaible for a
EL?
Thanks in advance,
Erica
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]