Installation guide

Whats New in iPlanet Web Server, Version 4.1
5
<required>true</required>
</attribute>
<attribute>
<name>att3</name>
<required>true</required>
</attribute>
</tag>
<!-- Another simple tag -->
<!-- log tag -->
<tag>
<name>log</name>
<tagclass>examples.LogTag</tagclass>
<bodycontent>TAGDEPENDENT</bodycontent>
<info>
Perform a server side action; Log the message.
</info>
<attribute>
<name>toBrowser</name>
<required>false</required>
</attribute>
</tag>
</taglib>
If you do not include the DOCTYPE in your taglib.tld file, the JSP compiler throws an exception:
Unable to open taglibrary /jsps/test-tags.jar : com.sun.xml.tree.TextNode
Step 2: Create the Tag Handler Classes
Here is the ExampleTagBase.java file:
package examples;
import javax.servlet.jsp.*;
import javax.servlet.jsp.tagext.*;
public abstract class ExampleTagBase implements Tag {
public void setParent(Tag parent) {
this.parent = parent;
}
public void setBodyContent(BodyContent bodyOut) {
this.bodyOut = bodyOut;
}