Re: Tags not being executed on first request...

2008-03-26 Thread Nathan Wilhelmi
A few more details based on your suggestion. TagB looks like this (tagb.tag) <%@ include file="/WEB-INF/views/jsp/common/include.jsp" %> <%@ attribute name="ID" required="true" type="java.lang.String" %> ${ID} TagA looks like this (taga.tag) {html/jsp code} ">

Re: Tags not being executed on first request...

2008-03-25 Thread david delbecq
It's probably that tag A you use has conditional logic that is false upon first request. Making it skip it's content. Difficult to tell more without knowing the taglibs involved and the associated conditions Nathan Wilhelmi a écrit : Hello - We are using Tomcat 6.0.14, we have some pages that us

Tags not being executed on first request...

2008-03-25 Thread Nathan Wilhelmi
Hello - We are using Tomcat 6.0.14, we have some pages that use some nested tags, such as Page A -> Tag A -> Tab B, it's not reclusive problem. We are using the JSP.tag files for this. The problem is on the first request, Page A -> Tag A works fine, however Tag B never appears to be rendered. N