专业化管理 > 确保数据安全 > 安全标签和协议 > 配置安全标签 > 安全标签配置步骤 > 步骤 7. 编辑 LogicalAttributesSite.xml - 必需
  
步骤 7. 编辑 LogicalAttributesSite.xml - 必需
编辑 LogicalAttributesSite.xml 文件,将每个安全标签的 Property 子元素添加到 wt.access.SecurityLabeled Class 元素。
1. 如果您的站点尚不存在该文件,请在以下位置创建一个 LogicalAttributesSite.xml 文件:
<Windchill>/wtSafeArea/siteMod/codebase
其中 <Windchill> 是您的 Windchill 解决方案的安装位置。
LogicalAttributesSite.xml 文件应包含以下内容:
<?xml version="1.0" standalone="no"?>
<!DOCTYPE LogicalAttributes SYSTEM "/com/ptc/core/meta/common/impl/
LogicalAttributes.dtd" >
<!-- Site specific logical attributes. -->
<LogicalAttributes>
</LogicalAttributes>
如果 <Windchill>/codebase 目录中存在一个 LogicalAttributesSite.xml 文件,则请将该现有文件复制到以下位置:
<Windchill>/wtSafeArea/ptcOrig/codebase
<Windchill>/wtSafeArea/siteMod/codebase
2. 在文本编辑器中打开 <Windchill>/wtSafeArea/siteMod/codebase/LogicalAttributesSite.xml 文件。
3. LogicalAttributes 元素中添加 Class 元素。
<Class name="wt.access.SecurityLabeled">
</Class>
4. Class 元素中,
为 ALL_SECURITY_LABELS、ALL_STANDARD_SECURITY_LABELS、ALL_CUSTOM_SECURITY_LABELS 以及各安全标签添加 Property 子元素,格式如下:
<Property>
<LogicalForm><SECURITY_LABEL></LogicalForm>
<ExternalForm>SCA|<SECURITY_LABEL></ExternalForm>
</Property>
其中 SCA|<SECURITY_LABEL> 与安全标签配置文件中安全标签的 SecurityLabelResourceKey 元素值中代字号 (~) 后的段匹配。该值只能包含字母数字字符和下划线字符。不过,LogicalForm 中的 <SECURITY_LABEL> 值不需要与 ExternalForm 中的 <SECURITY_LABEL> 值匹配,这是本指南中使用的惯例。
例如,在示例配置中,添加了每个安全标签所必需的行后,元素将以如下方式显示:
<Class name="wt.access.SecurityLabeled">
<Property>
<LogicalForm>ALL_SECURITY_LABELS</LogicalForm>
<ExternalForm>SCA|ALL_SECURITY_LABELS</ExternalForm>
</Property>
<Property>
<LogicalForm>ALL_STANDARD_SECURITY_LABELS</LogicalForm>
<ExternalForm>SCA|ALL_STANDARD_SECURITY_LABELS</ExternalForm>
</Property>
<Property>
<LogicalForm>ALL_CUSTOM_SECURITY_LABELS</LogicalForm>
<ExternalForm>SCA|ALL_CUSTOM_SECURITY_LABELS</ExternalForm>
</Property>
<Property>
<LogicalForm>CORPORATE_PROPRIETARY</LogicalForm>
<ExternalForm>SCA|CORPORATE_PROPRIETARY</ExternalForm>
</Property>
<Property>
<LogicalForm>EXPORT_CONTROL</LogicalForm>
<ExternalForm>SCA|EXPORT_CONTROL</ExternalForm>
</Property>
<Property>
<LogicalForm>LEGAL_INFORMATION</LogicalForm>
<ExternalForm>SCA|LEGAL_INFORMATION</ExternalForm>
</Property>
<Property>
<LogicalForm>THIRD_PARTY_PROPRIETARY</LogicalForm>
<ExternalForm>SCA|THIRD_PARTY_PROPRIETARY</ExternalForm>
</Property>
</Class>
5. 保存并关闭。