Installation guide
What’s New in iPlanet Web Server, Version 4.1
4 iPlanet Web Server, Enterprise Edition Release Notes • June 20, 2001
The TLD file must reference an associated DTD file, which has to be named
web-jsptaglib_1_1.dtd. This file is available at the iPlanet Web Server website for download.
You must make it accessible via a URL in the TLD file (for example
http://server:port/dtds/web-jsptaglib_1_1.dtd). An incorrect URL for the DTD file or a
corrupt DTD file results in failures in opening your JSPs that contain custom tags.
The tag library must be named
taglib.tld and must reside under the META-INF subdirectory in
the
taglib.jar file you will create in step 4.
Here is an example of a
taglib.tld file:
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE taglib
PUBLIC "-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN"
"http://server:port/dtds/web-jsptaglib_1_1.dtd">
<!-- a tag library descriptor -->
<taglib>
<!-- after this the default space is
"http://java.sun.com/j2ee/dtds/jsptaglibrary_1_2.dtd"
-->
<tlibversion>1.0</tlibversion>
<jspversion>1.1</jspversion>
<prefix>simple</prefix>
<urn></urn>
<info>
A simple tab library for the examples
</info>
<!-- A simple Tag -->
<!-- foo tag -->
<tag>
<name>foo</name>
<tagclass>examples.FooTag</tagclass>
<teiclass>examples.FooTagExtraInfo</teiclass>
<bodycontent>JSP</bodycontent>
<info>
Perform a server side action; uses 3 mandatory attributes
</info>
<attribute>
<name>att1</name>
<required>true</required>
</attribute>
<attribute>
<name>att2</name>