Turning Off Briefcase File Encryption

Updated: April 10, 2007
Is it possible to turn off the file path encryption for the briefcase?

Yes.

In the $TOMCAT_HOME/webapps/AcademusApps/WEB-INF/classes/config/encryption.xml, set encrypt="false" for the encryption instance named 'monkey'. For example,

<encryption-services>
    <encryption-instance encrypt="false">
        <name>monkey</name>
        <key>cafebabe</key>
    </encryption-instance>
    ...