コンフィギュレーションと展開
<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 サーバーを再起動します。
これは役に立ちましたか?