Please could some on offer assistance to 
executing the following code within the environment

import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;

public class myTagClass extends TagSupport {

        String name = "";

        public void setName() {
         ....
        }

        public String getName() {
         return name;
        }

        public int doStartTag throws JspException {

        ....
        return EVAL_BODY_INCLUDE;
        }

        public int doAfterBody throws JspException {

                try {
                        JspWriter out = pageContext.getOut();
                        out.print("....");
                } catch(Exception ioex) {
                        throw new JspExcetion(ioex.getMessage());
                }

                rtnValue = SKIP_BODY;

                if (!isComplete) {
                        rtnValue = EVAL_BODY_AGAIN;
                }

                return rtnValue;
        }
}


When I attempt to compile the code in forte4j 3.0 I receive a
compilation error
stating that it can not resolve EVAL_BODY_AGAIN.

Incidentally, this option does not appear when you attampt a code look
up using CNTRL + SPACEBAR
Do I need to attach tomcat 4.0? to the IDE.... Howo do I acheive this.?

Any clues?



Thanks,

Paul Idusogie 
Technical Architect 
Consulting Services
Stellent Inc.
7777 Golden Triangle Drive
Eden Prairie, MN 55104
Desk: 952.656.2755
Fax: 952.903.2115
Email: [EMAIL PROTECTED]
website: http://www.stellent.com

==========================================================================To 
unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://archives.java.sun.com/jsp-interest.html
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.jsp
 http://www.jguru.com/faq/index.jsp
 http://www.jspinsider.com

Reply via email to