Configuration and Deployment
You can configure the encryption filter with Windchill by adding the following entries in <Windchill>/codebase/WEB-INF/web.xml at the end of corresponding sections.
<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 is a sample filter class name that is implemented as customization. The filter-class value should be the class name of your implementation.
Deploy the class file and the web.xmlconfiguration at all File Server sites and the Main site (at all nodes in a cluster environment). Restart Windchill server after the deployment of class file and the web.xml file.
Was this helpful?