Friday, January 21, 2022

How to run Oracle Forms 10G without browser

 

How to run Oracle Forms 10G without browser

There are several challenges that arise while running Oracle forms in the browser, and many individuals are considering launching Oracle applications without utilizing the browser since they are unable to setup it correctly.

We'll see how to setup it in Oracle Application Server in the stages that follow.

1.       Make that your application server's JRE environment is correctly installed and configured.

2.       Create a file with the extension ".jnlp" wherever. I made it on my desktop.

3.       Into the file, copy and paste the following:

<jnlp spec="1.0+" codebase="http://192.168.0.107:7778/forms/java/">

  <information>

    <title>Webstart Application</title>

    <vendor>https://tech-things-solutions.blogspot.com</vendor>

    <homepage href="null"/>

    <description>dbWare Application</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="Webstart Test Oracle Forms 10g" main-class="oracle.forms.engine.Main" width="990" height="600">

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

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

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

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

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

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

    <param name="serverArgs" value="module=C:\forms\login.fmx userid=scott/tiger@orcl"/>

    <param name="serverURL" value="http://192.168.10.1:7001/forms/lservlet?ifcfs=http://192.168.10.1:7001/forms/frmservlet?config=PSL"/>

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

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

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

  </applet-desc>

</jnlp>

4.       In your file, add the following arguments.

IP, Port, Form Path and name, Database User, Password and DB name.

5.       Save the document. To launch the program, close it and double-click it.

 

I hope it's helpful for you. If you have any queries, don't hesitate to contact me.

Name : Muhammad Sahal Qasim
E-mail : s.m.sahal789@gmail.com
Thank you.

0 comments:

Post a Comment

If you have any doubts, please let me know. I will help you.