My previous post was missing some condiments...  Here is a file that
compiles against the PR2 APIs:


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

public class Hello extends TagSupport {
    public int doStartTag() {
        try {
            pageContext.getOut().print("Hello World");
        } catch (Exception ex) {
            throw new Error("IO problems");
        }
        return SKIP_BODY;
    }
}

============

        - eduard/o

===========================================================================
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