Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

java web start centos 7

tayshaunOct 1 2018 — edited Oct 3 2018

hi colleagues I need your help

I'm trying to configure java web start to run my form of oracle forms12c without a browser,
download the file from my browser through this link http://server:9001/forms/frmservlet?config=webstart, which I downloaded this file frmservlet,

Right now I'm using the Java version "jdk1.8.0_144" and I'm using Centos 7 64bit

when I run my file from the console ./javaws frmservlet presents me this

pastedImage_0.png

my question is how can I execute my forms of oracle forms12c with java web start, through this frmservlet file.

this is the configuration that I have in the file:

<?xml version="1.0" encoding="UTF-8"?>

<jnlp spec="1.0"

xmlns:jfx="http://javafx.com"

codebase="http://server:9001/forms/java">

<information>

<title>Oracle Forms Services</title>

<vendor>Oracle Corporation</vendor>

<homepage href="http://www.oracle.com"/>

<description>Oracle Forms Services applet launcher.</description>

<description kind="short">Oracle Forms Applet</description>

</information>

<security>

<all-permissions/>

</security>

<update check="always" policy="prompt-run"/>

<resources>

<!-- Application Resources -->

<j2se version="1.7+" href="http://java.sun.com/products/autodl/j2se"/>

<jfx:javafx-runtime version="2.2+"/>

<jar href="/forms/java/frmall.jar" download="eager" main="true" />

<!--extension name="Extensions" href="/forms/java/extensions.jnlp"/-->

</resources>

<applet-desc

name="Oracle Forms"

main-class="oracle.forms.engine.Main"

height="100%"

width="100%">

<param name="serverURL" value="/forms/lservlet?ifcfs=/forms/frmservlet?config=webstart&ifsessid=&acceptLanguage=en-US,en;q=0.5"/>

<param name="height" value="100%"/>

<param name="width" value="100%"/>

<param name="networkRetries" value="0"/>

<param name="separateFrame" value="false"/>

<param name="splashScreen" value="NO"/>

<param name="background" value="NO"/>

<param name="lookAndFeel" value="Oracle"/>

<param name="colorScheme" value="swan"/>

<param name="customColorScheme" value=""/>

<param name="serverApp" value=""/>

<param name="logo" value="NO"/>

<param name="imageBase" value="codebase"/>

<param name="formsMessageListener" value=""/>

<param name="recordFileName" value=""/>

<param name="EndUserMonitoringEnabled" value="false"/>

<param name="EndUserMonitoringURL" value=""/>

<param name="heartBeat" value=""/>

<param name="MaxEventWait" value=""/>

<param name="allowAlertClipboard" value="true"/>

<param name="disableValidateClipboard" value="false"/>

<param name="enableJavascriptEvent" value="true"/>

<param name="digitSubstitution" value="context"/>

<param name="legacy_lifecycle" value="false"/>

<param name="JavaScriptBlocksHeartBeat" value="false"/>

<param name="highContrast" value="false"/>

<param name="disableMDIScrollbars" value=""/>

<param name="clientDPI" value=""/>

<param name="applet_stop_timeout" value="800"/>

<param name="guiMode" value="0"/>

<param name="idleTimeout" value=""/>

<param name="ssoLogoutRedirect" value=""/>

<param name="ssoMode" value="false"/>

<param name="ssoLogout" value="false"/>

<param name="logoutTargetURLParamname" value=""/>

<param name="mediaBase" value="codebase"/>

<param name="webstartRequest" value="true"/>

<param name="webFormsTitle" value="Oracle Fusion Middleware Forms Services"/>

<param name="centerOnStartup" value=""/>

<param name="isResizable" value=""/>

<param name="alwaysOnTop" value=""/>

</applet-desc>

</jnlp>

I need your help

Comments
Post Details
Added on Oct 1 2018
11 comments
2,007 views