Our application runs under Forms 12c just fine using JNLP. I listed the Jar files we use in extensions.jnlp, and put those Jar files into ORACLE_HOME/forms/java. But, we want to keep our Jar files in a different directory structure with all of our other application objects. We would rather keep our Jar files in the /u01/app/OurFormsApp/libs directory, like we always have before. We use a custom .conf file in the $DOMAIN_HOME/config/fmwconfig/components/OHS/instances/ohs1/moduleconf directory, where we have aliases for /web_html/, /web_temp/, /web_icons/ and /web_help/. We also have an AliasMatch entry:
AliasMatch ^/OurFormsAppLibs/(..*) "/u01/app/OurFormsApp/libs/$1"
In the extensions.jnlp file, I tried this:
<jar href="OurFormsAppLibs/jacob.jar"/>
But, the Jar file is not found. Is there a way to make configurations to allow us to put Jar files anywhere other than ORACLE_HOME/forms/java when using JNLP?