Oracle10g Forms run by Java Web Start: Difference between revisions
No edit summary |
|||
Line 40: | Line 40: | ||
</jnlp> | </jnlp> | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Run Oracle10g Webstart == | |||
Download <code>[http://dev.chorke.org/forms/chorke-ebis-launch.jnlp.jsp chorke-ebis-launch.jnlp]</code> from your '''Web Browser, CURL or Wget''' from <code>http://dev.chorke.org/forms/chorke-ebis-launch.jnlp.jsp</code> | |||
=== Using Batch Script === | |||
<syntaxhighlight lang="batch"> | |||
SET JAVA_HOME=C:\Program Files\Java\jre6 | |||
SET PATH=%JAVA_HOME%\bin;%PATH% | |||
javaws chorke-ebis-launch.jnlp | |||
</syntaxhighlight> | |||
=== Using Bash Shell === | |||
<syntaxhighlight lang="bash"> | |||
export JAVA_HOME="/opt/java/jre6" | |||
export PATH="$JAVA_HOME/bin:$PATH" | |||
javaws chorke-ebis-launch.jnlp | |||
</syntaxhighlight> | |||
To avoid '''Java Default Security''', Please open <code>javacpl</code>('''Java Control Panel''') form your terminal Then update your security settings. Please try again to run. Before deployment dependencies like jar, don't forget to Sign else like following exception may occurred! | |||
com.sun.deploy.net.JARSigningException: Found unsigned entry in resource: http://dev.chorke.org/forms/java/commons-logging-1.2.jar | |||
at com.sun.javaws.security.SigningInfo.getCommonCodeSignersForJar(Unknown Source) | |||
at com.sun.javaws.security.SigningInfo.check(Unknown Source) | |||
at com.sun.javaws.LaunchDownload.checkSignedResourcesHelper(Unknown Source) | |||
at com.sun.javaws.LaunchDownload.checkSignedResources(Unknown Source) | |||
... more ... |
Revision as of 10:43, 24 December 2017
Most of modern Web Browsers relays on HTML5. Due to the security reason they obsoleted Adobe Flash Player, Silver Light and Java Applet too. Most recently Oracle announce not to support(End of Life) Java Applet using Web Browser, where they will remain support using Java Webstart. It would be quite difficult to run Oracle Applet Base forms in modern Web Browsers. It would be little bit tricky but best solution for Oracle developer to run Oracle Forms run as a separate application. For the days it's very stable and reliable.
Java Webstart (JNLP)
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://dev.chorke.org/forms/java/" xhref="chorke-ebis-launch.jnlp">
<information>
<title>EBIS</title>
<vendor>Chorke, Inc.</vendor>
<homepage href="chorke.org"/>
<description>
Chorke EBIS(Enterprise Business Intelegent Suite)
built by Oracle Forms 10g DS. @Copyright 2017.
</description>
</information>
<security>
<all-permissions/>
</security>
<update check="timeout" policy="always"/>
<resources>
<java version="1.6.0"/>
<jar href="frmall.jar" download="eager" main="true"/>
</resources>
<applet-desc name="EBIS" main-class="oracle.forms.engine.Main" width="990" height="660">
<param name="background" value="no"/>
<param name="logo" value="no"/>
<param name="serverApp" value="default"/>
<param name="lookAndFeel" value="oracle"/>
<param name="allow_debug" value="true"/>
<param name="separateFrame" value="false"/>
<param name="em_mode" value="1"/>
<param name="latencyCheck" value="true"/>
<param name="networkRetries" value="240"/>
<param name="serverArgs" value="module=test.fmx useSDI=yes"/>
<param name="serverURL" value="http://dev.chorke.org/forms/lservlet?ifcfs=http://dev.chorke.org/forms/frmservlet?config=jpi"/>
<param name="colorScheme" value="teal"/>
<param name="splashScreen" value="no"/>
<param name="dontTruncateTabs" value="true"/>
</applet-desc>
</jnlp>
Run Oracle10g Webstart
Download chorke-ebis-launch.jnlp
from your Web Browser, CURL or Wget from http://dev.chorke.org/forms/chorke-ebis-launch.jnlp.jsp
Using Batch Script
SET JAVA_HOME=C:\Program Files\Java\jre6
SET PATH=%JAVA_HOME%\bin;%PATH%
javaws chorke-ebis-launch.jnlp
Using Bash Shell
export JAVA_HOME="/opt/java/jre6"
export PATH="$JAVA_HOME/bin:$PATH"
javaws chorke-ebis-launch.jnlp
To avoid Java Default Security, Please open javacpl
(Java Control Panel) form your terminal Then update your security settings. Please try again to run. Before deployment dependencies like jar, don't forget to Sign else like following exception may occurred!
com.sun.deploy.net.JARSigningException: Found unsigned entry in resource: http://dev.chorke.org/forms/java/commons-logging-1.2.jar at com.sun.javaws.security.SigningInfo.getCommonCodeSignersForJar(Unknown Source) at com.sun.javaws.security.SigningInfo.check(Unknown Source) at com.sun.javaws.LaunchDownload.checkSignedResourcesHelper(Unknown Source) at com.sun.javaws.LaunchDownload.checkSignedResources(Unknown Source) ... more ...