1

I want to run Oracle Forms standalone without any web-browser with java plugin. Is there a way to call a compiled .fmx form directly via some java application or by calling the forms-JAR-files with some parameters?

CU, Arne

skaffman
  • 398,947
  • 96
  • 818
  • 769
arnep
  • 5,971
  • 3
  • 35
  • 51
  • What version of Oracle Forms? Might be possible for 6i and below. Since Version 9i Oracle forms is web only requires some form of java applet when deployed in production. – Ian Carpenter Mar 02 '10 at 09:00
  • Sorry, I forgot to mention: it is Oracle Forms 10g. We do not want to deploy through that webbrowser/applet-thing but as standalone application as in < 6i. e.g. `java -jar oracleforms.jar myForm.fmx` and then we have some nice application running. – arnep Mar 02 '10 at 14:20

2 Answers2

2

Inofficial contradiction: Yes, it's possible :-)

Oracle support says it is officially not supported, but you can use Web Start (again not supported by Oracle).

Support recommended this link: http://groundside.com/blog/JanCarlin.php?title=forms_and_java_web_start and our developers tried and succeeded. You can run it as local application without need of a web browser (looks like an applet without browser window around).

Update (2013-01-18): The blog seems to have moved/old entries vanished. See here at archive.org for original article: http://web.archive.org/web/20090303153527/http://groundside.com/blog/JanCarlin.php?title=forms_and_java_web_start&more=1&c=1&tb=1&pb=1

arnep
  • 5,971
  • 3
  • 35
  • 51
  • I would need this solution for this question here: http://stackoverflow.com/questions/14382272/running-oracle-forms-11g-outside-browser, but unfortunately the link isn't online anymore. – ChrLipp Jan 17 '13 at 19:19
  • I updated the answer providing a link to archive.org with this article. – arnep Jan 18 '13 at 12:24
1

No it's not possible. Oracle forms 9i and above are web only releases. All the architecture needed to execute the fmx is now located within the Oracle Application Server.

The 2nd question from this link explains that Forms 9i (which 10g and later are built on) are web only releases

http://www.oracle.com/technology/products/forms/htdocs/formsservices9ifaq.html#UPGRADE

Ian Carpenter
  • 8,346
  • 6
  • 50
  • 82