Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Keshav Shetty
I concluded that your EL are not evaluated. I think you have to use %@ page isELIgnored=false% in your jsp. I hope this will solve your problem. You can also refer to http://forum.java.sun.com/thread.jspa?threadID=573209messageID=2848229 Let me know the result. Best regards Keshav Shetty Robert

Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
strange thing is that it evaluates the EL in the JSTL tags such as c:out Keshav Shetty wrote: I concluded that your EL are not evaluated. I think you have to use %@ page isELIgnored=false% in your jsp. I hope this will solve your problem. You can also refer to

Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
That just made my EL expressions in my JSTL tags explode ... if I put in that directive then I get the following result: org.apache.jasper.JasperException: /JSPs/AdminSubscriptions.jsp(22,1) According to TLD or attribute directive in tag file, attribute test does not accept any expressions

Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Robert Simmons Jr.
Thanks. I currently have a workaround using the nested JSP attribute tag. cs:subscriptionInfo nameVar=subName descriptionVar=subDesc jsp:attribute name=targetID c:out value=${subID}/ /jsp:attribute

Re: Newbie Question: EL in attributes for a custom tag not being evaluated??

2005-01-04 Thread Kris Schneider
Robert, Since it looks like you're using javax.servlet.jsp.tagext.SimpleTagSupport, I'll assume your're running on a JSP 2.0 container. I haven't looked closely at the rest of your code yet, but the first thing to do is make sure your web app is using a Servlet 2.4 deployment descriptor