配置和部署
您可以通过在 <Windchill>/codebase/WEB-INF/web.xml 中相应部分的末尾添加以下条目,对 Windchill 加密筛选器进行配置。
<filter>
<description>Servlet response filter class which encrypts the content.</description>
<filter-name>ContentEncryptionFilter</filter-name>
<filter-class>wt.content.filter.ContentEncryptionFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>ContentEncryptionFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
* 
wt.content.filter.ContentEncryptionFilter 是作为自定义来实现的示例筛选器类名称。filter-class 值应为实现的类名称。
在 (位于群集环境中所有节点的) 所有文件服务器站点和主站点上部署类文件和 web.xml 配置。部署类文件和 web.xml 文件后,重新启动 Windchill 服务器。
这对您有帮助吗?