DNs in Certificate Management System
Appendix
A
Distinguished Names
317
<tr>
<td valign="TOP">
<div align="RIGHT">
<font face="PrimaSans BT, Verdana, Arial, Helvetica,
sans-serif" size="-1">Organization unit: </font>
</div>
</td>
<td valign="TOP">
<input type="TEXT" name="OU" size="30"
onchange="formulateDN(this.form, this.form.subject)">
</td>
</tr>
<tr>
<td valign="TOP">
<div align="RIGHT">
<font face="PrimaSans BT, Verdana, Arial, Helvetica,
sans-serif" size="-1">Domain component: </font>
</div>
</td>
<td valign="TOP">
<input type="TEXT" name="DC" size="30"
onchange="formulateDN(this.form, this.form.subject)">
</td>
</tr>
4.
Save your changes and close the file.
5.
Go to this directory:
<server_root>/cert-<instance_id>/web-apps/ee
6.
Open the
cms-funcs.js
file in a text editor.
7.
Find the line with
form.OU != null
(or the component that the new
component will follow) and add the
if
block. For example, if the new
component is
DC
and comes after
OU
, you need to add the lines shown in bold:
if (form.OU != null) {
if (OU.value != '') {
if (doubleQuotes(OU.value) == true) {
alert('Double quotes are not allowed in Org Unit
field');
OU.value = '';
OU.focus();
return;
}
if (distinguishedName.value != '')
distinguishedName.value += ', ';
Summary of Contents for Certificate Management System 6.01
Page 1: ...Plug Ins Guide Netscape Certificate Management System Version6 01 May 2002...
Page 10: ...10 Netscape Certificate Management System Plug Ins Guide May 2002...
Page 62: ...Enrollment Forms 62 Netscape Certificate Management System Plug Ins Guide May 2002...
Page 308: ...NTEventLog Plug in Module 308 Netscape Certificate Management System Plug Ins Guide May 2002...