Abraham Kang wrote:
>
> Can someone please enlighten me on what this means:
>
> "After this method [doEndTag()], the JSP engine will update scripting variables as 
>indicated by the
> optional TagExtraInfo class (at translation time)." -from JSP 1.1 spec.
>
> I guess the more general question is:
>
> How does updating scripting variables at translation time differ from updating 
>scripting variables at request-time?
>
> What are the limitations and how are they different?

What the text is trying to explain is that the TagExtraInfo class (provided by the
custom tag implementation) is used during translation-time (when the JSP page is
converted into a servlet) to generate the code that's needed to update scripting
variables the tag (optionally) creates. The actual value of the variable is set
during request-time (i.e. when the servlet created from the JSP page is executed).

--
Hans Bergsten           [EMAIL PROTECTED]
Gefion Software         http://www.gefionsoftware.com

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to