Installation guide

Whats New in iPlanet Web Server, Version 4.1
11
Step 6: Create the JSP File
This section shows an example JSP file that uses the custom tags. A custom prefix, tt, indicates
which tags are handed off to the custom tag library (the
foo and log tags).
Step 7: Test the Custom Tags
Enter the following URL in your browser:
http://server:port/jsps/test-tags.jsp
Your browser should show the following:
Testing Jsp taglibs!
Hello Taglibs!
Storing Multiple Server Certificates on Hardware Tokens
To store multiple server certificates on hardware tokens, perform the following steps:
1. Create a software trust database even though the web page says you dont need to
2. Change the nickname of the server when you install it (which violates the webpage telling you
not to do this)
3. Add an undocumented line in the magnus.conf file (via the CERTDefaultNickname directive)
for each respective server.
<%@ page language="java" %>
<%@ taglib prefix="tt" uri="/jsps/test-tags.jar" %>
<title>Testing taglibs </title>
<h1>Testing Jsp taglibs! </h1>
<p><em><tt:foo att1="hello" att2="world" att3="tags" /></em><br>
<p><em><tt:log toBrowser="true" /> Hello Taglibs!</em><br>