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

2005-01-04 Thread Olaf Bergner
von Robert Simmons Jr. > Gesendet: Dienstag, 4. Januar 2005 18:53 > An: taglibs-user@jakarta.apache.org > Betreff: Re: AW: AW: Newbie Question: EL in attributes for a custom tag > not being evaluated?? > > > Olaf; > > I did what you said but now Im getting a transient erro

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

2005-01-04 Thread Hassan Schroeder
Robert Simmons Jr. wrote: I changed the web.xml as you suggested but now the JSTL tags blow so I obviously need a version of the JSTL that works with 2.4. Which Jakarta taglibs version works with that ? On the left menu you'll see JCP Standardized

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

2005-01-04 Thread Robert Simmons Jr.
news [mailto:[EMAIL PROTECTED] Auftrag von Robert Simmons Jr. Gesendet: Dienstag, 4. Januar 2005 17:00 An: taglibs-user@jakarta.apache.org Betreff: Re: AW: Newbie Question: EL in attributes for a custom tag not being evaluated?? Addendum: My web.xml is here ... http://ja

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

2005-01-04 Thread Robert Simmons Jr.
ope this makes things a little clearer, Olaf -Ursprüngliche Nachricht- Von: Kris Schneider [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 4. Januar 2005 13:53 An: Tag Libraries Users List Betreff: Re: Newbie Question: EL in attributes for a custom tag not being evaluated?? Robert, Since

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

2005-01-04 Thread Kris Schneider
responsibility > >to evaluate EL expressions in JSP 2.0 this is the servlet container's job. > >That's exactly why tags which call themselves EL enabled usually won't work > >in a JSP 2.0 environment. These tags handle EL evaluation intern

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

2005-01-04 Thread Olaf Bergner
Robert Simmons Jr. > Gesendet: Dienstag, 4. Januar 2005 17:00 > An: taglibs-user@jakarta.apache.org > Betreff: Re: AW: Newbie Question: EL in attributes for a custom tag not > being evaluated?? > > > Addendum: > > My web.xml is here ... > > &g

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

2005-01-04 Thread Robert Simmons Jr.
53 An: Tag Libraries Users List Betreff: Re: Newbie Question: EL in attributes for a custom tag not being evaluated?? 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

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

2005-01-04 Thread Robert Simmons Jr.
his makes things a little clearer, Olaf -Ursprüngliche Nachricht- Von: Kris Schneider [mailto:[EMAIL PROTECTED] Gesendet: Dienstag, 4. Januar 2005 13:53 An: Tag Libraries Users List Betreff: Re: Newbie Question: EL in attributes for a custom tag not being evaluated?? Robert,

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

2005-01-04 Thread Olaf Bergner
; Gesendet: Dienstag, 4. Januar 2005 13:53 > An: Tag Libraries Users List > Betreff: Re: Newbie Question: EL in attributes for a custom tag not > being evaluated?? > > > Robert, > > Since it looks like you're using > javax.servlet.jsp.tagext.SimpleTagSupport, I'll

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 (web.xml).

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. This appears to work. *shrug* I keep thinking that there is something Im missing in my tag implementation. -

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

2005-01-04 Thread Keshav Shetty
Although I couldn't find the actual reason to your problem, But I have a workaround. Instead of EL use direct JSP expression like <%=subID%> in the code i.e Please take care that subID variable present and initialised in your JSP. I will analyze further reagrding your problem during my free tim

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.
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 http://forum.java.sun.com/thread.j

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=573209&messageID=2848229 Let me know the result. Best regards Keshav Shetty Rober

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

2005-01-04 Thread Robert Simmons Jr.
Greetings; I have a tag that I created to allow integration with my back end. I am using the Jakarta astandard taglibs extensively in the application but I am a bit of a taglib newbie and I have a problem. Namely when I use EL expressions in my tag attributes, they get passed verbatim to the tag