{"id":46823,"date":"2026-09-17T09:30:51","date_gmt":"2026-09-17T07:30:51","guid":{"rendered":"https:\/\/www.dbi-services.com\/blog\/?p=46823"},"modified":"2026-09-17T09:30:53","modified_gmt":"2026-09-17T07:30:53","slug":"oracle-forms-java-web-start-or-fsal","status":"publish","type":"post","link":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/","title":{"rendered":"Oracle Forms: Java Web Start or FSAL?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">A customer recently asked me about the difference between Java Web Start and the Forms Standalone Launcher for running Oracle Forms applications.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I found it a very good question. From the user\u2019s perspective, both methods look similar: the Forms application opens in its own Java window. The real difference is how the application is launched, deployed, secured, and maintained on the workstation.<\/p>\n\n\n\n<!--more-->\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL-1024x576.png\" alt=\"\" class=\"wp-image-46827\" srcset=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL-1024x576.png 1024w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL-300x169.png 300w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL-768x432.png 768w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL-1536x864.png 1536w, https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL.png 1672w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Here is the practical answer, based on experience with Oracle Forms environments.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\" id=\"h-first-both-methods-use-the-same-forms-architecture\"><strong>First, both methods use the same Forms architecture<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Whether you use Java Web Start or FSAL:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The Forms application remains hosted centrally on the application server.<\/li>\n\n\n\n<li>The <code>.fmx<\/code>, <code>.mmx<\/code>, and <code>.plx<\/code> modules stay on the server.<\/li>\n\n\n\n<li>A Java-based Forms client runs on the user\u2019s workstation.<\/li>\n\n\n\n<li>The client communicates with Oracle Forms Services, generally hosted on WebLogic Server.<\/li>\n\n\n\n<li>The application itself normally does not need to be rewritten when changing the launch method.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Therefore, FSAL is not a return to the old Forms 6i client\/server architecture. It only provides a similar desktop experience,<\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Java Web Start<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">Java Web Start, or JWS, launches the application using a JNLP file.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The user normally opens a Forms URL:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nhttps:\/\/forms.example.com\/forms\/frmservlet?config=webstart\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">The server generates a <code>.jnlp<\/code> file, which is downloaded and opened by Java Web Start. The Forms application then runs in a separate Java window.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Oracle describes Java Web Start as a <strong>semi-browserless configuration<\/strong>: the browser can be used to initiate the application, but the application does not run inside the browser window.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Advantages of Java Web Start<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Users can start the application from a familiar web link.<\/li>\n\n\n\n<li>The JNLP configuration is generated centrally by the Forms server.<\/li>\n\n\n\n<li>Java archives can be downloaded and cached automatically.<\/li>\n\n\n\n<li>It can integrate well with environments where authentication starts in the browser.<\/li>\n\n\n\n<li>It usually requires limited change when replacing an older browser-based Forms deployment.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Disadvantages of Java Web Start<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It depends on Java Web Start technology, which is associated mainly with Java 8.<\/li>\n\n\n\n<li>Java Web Start is no longer included in modern JDK releases.<\/li>\n\n\n\n<li>JNLP file associations can behave differently depending on the workstation and browser.<\/li>\n\n\n\n<li>Browser security settings may prevent the JNLP file from opening automatically.<\/li>\n\n\n\n<li>Java cache problems are relatively common.<\/li>\n\n\n\n<li>Certificate changes, proxies, and local Java security settings can affect application startup.<\/li>\n\n\n\n<li>Troubleshooting frequently involves the user\u2019s workstation rather than the Forms server.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">My experience with Java Web Start<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Once correctly configured, Java Web Start works well. However, many operational incidents are related to the client environment:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The <code>.jnlp<\/code> file is downloaded but not opened.<\/li>\n\n\n\n<li>The workstation uses the wrong Java version.<\/li>\n\n\n\n<li>The operating system loses the JNLP file association.<\/li>\n\n\n\n<li>An old JAR remains in the Java cache.<\/li>\n\n\n\n<li>A certificate renewal causes a new security warning.<\/li>\n\n\n\n<li>Browser updates change how downloaded JNLP files are handled.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">These are rarely Forms application problems, but they still generate support requests.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">When should you choose Java Web Start?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Java Web Start remains reasonable when:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The organization already has a stable and managed Java 8 environment.<\/li>\n\n\n\n<li>The existing JWS deployment works reliably.<\/li>\n\n\n\n<li>Users need to launch Forms from a browser-based portal.<\/li>\n\n\n\n<li>The authentication or SSO process requires a browser.<\/li>\n\n\n\n<li>The objective is a short-term migration with minimal client-side change.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">I would be more cautious about selecting JWS for a completely new, long-term deployment because of its dependency on legacy Java deployment technology.<\/p>\n\n\n\n<h1 class=\"wp-block-heading\">Forms Standalone Launcher<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">The Forms Standalone Launcher, or FSAL, launches Oracle Forms without relying on a browser or Java Web Start.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The workstation runs the <code>frmsal.jar<\/code> launcher directly:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\njava -jar frmsal.jar -url &quot;https:\/\/forms.example.com\/forms\/frmservlet?config=standaloneapp&quot;\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">In practice, users do not need to enter this command. It can be included in a desktop shortcut, shell script, batch file, or software deployment package.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Advantages of FSAL<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It is fully independent of the browser.<\/li>\n\n\n\n<li>It does not require Java Web Start or a browser plug-in.<\/li>\n\n\n\n<li>It provides a clean desktop application experience.<\/li>\n\n\n\n<li>Browser updates do not affect the application launch.<\/li>\n\n\n\n<li>The startup command can be standardized and controlled by the IT team.<\/li>\n\n\n\n<li>Java parameters, memory settings, truststores, and logging can be explicitly configured.<\/li>\n\n\n\n<li>It is generally easier to reproduce and troubleshoot startup issues.<\/li>\n\n\n\n<li>It aligns better with current Java versions and Oracle\u2019s modern Forms direction.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">Disadvantages of FSAL<\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The <code>frmsal.jar<\/code> launcher must be distributed to every workstation.<\/li>\n\n\n\n<li>The launcher version must match the Oracle Forms server version and patch level.<\/li>\n\n\n\n<li>IT must maintain the desktop shortcut or startup script.<\/li>\n\n\n\n<li>Java and the required certificates must be correctly deployed on each workstation.<\/li>\n\n\n\n<li>Updating or patching Forms may require redistributing <code>frmsal.jar<\/code>.<\/li>\n\n\n\n<li>SSO, single sign-off, JavaScript integration, and communication with web pages require careful validation.<\/li>\n\n\n\n<li>The initial workstation packaging may require more preparation than simply publishing a URL.<\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\">My experience with FSAL<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">FSAL generally requires more preparation during the initial rollout. The Java runtime, <code>frmsal.jar<\/code>, truststore, startup parameters, and shortcut must be packaged correctly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Once that work is completed, the result is usually more predictable.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The application is no longer affected by browser behavior, JNLP file associations, or Java Web Start cache issues. When a startup problem occurs, the launch command and console output also provide a clearer troubleshooting path.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">One important operational point is the management of <code>frmsal.jar<\/code>. It should not be treated as a generic launcher that can be reused forever. It is version-specific and must remain aligned with the Forms installation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">When should you choose FSAL?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">FSAL is generally the better choice when:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>You are implementing a new Oracle Forms deployment.<\/li>\n\n\n\n<li>You are upgrading to a recent Oracle Forms release.<\/li>\n\n\n\n<li>You want to remove browser dependencies.<\/li>\n\n\n\n<li>You want to use a modern and centrally managed Java runtime.<\/li>\n\n\n\n<li>Workstations are managed using tools such as Microsoft Intune, SCCM, or another software distribution platform.<\/li>\n\n\n\n<li>You need predictable startup parameters and easier troubleshooting.<\/li>\n\n\n\n<li>Forms is primarily used as a business desktop application.<\/li>\n<\/ul>\n\n\n\n<h1 class=\"wp-block-heading\">Direct comparison<\/h1>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><th>Area<\/th><th>Java Web Start<\/th><th>FSAL<\/th><\/tr><tr><td>Launch method<\/td><td>URL and JNLP file<\/td><td>Java command, script, or shortcut<\/td><\/tr><tr><td>Browser dependency<\/td><td>Partial<\/td><td>None<\/td><\/tr><tr><td>Java Web Start required<\/td><td>Yes<\/td><td>No<\/td><\/tr><tr><td>User experience<\/td><td>Separate Java window<\/td><td>Separate Java window<\/td><\/tr><tr><td>Client deployment<\/td><td>JNLP association and compatible Java<\/td><td>Java runtime and <code>frmsal.jar<\/code><\/td><\/tr><tr><td>Central configuration<\/td><td><code>formsweb.cfg<\/code> and JNLP<\/td><td><code>formsweb.cfg<\/code> and launch package<\/td><\/tr><tr><td>Main operational risk<\/td><td>Java cache, JNLP, browser and file association<\/td><td>Launcher distribution and version alignment<\/td><\/tr><tr><td>Troubleshooting<\/td><td>Often distributed across browser, Java and OS<\/td><td>Generally more direct through command and logs<\/td><\/tr><tr><td>Best fit<\/td><td>Existing stable JWS deployment<\/td><td>New or modernized deployment<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h1 class=\"wp-block-heading\">My recommendation<\/h1>\n\n\n\n<p class=\"wp-block-paragraph\">For an existing, stable Java Web Start environment, I would not migrate to FSAL only for the sake of changing technology. The migration should provide a clear operational or security benefit.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For a new deployment or a major Oracle Forms upgrade, I would generally choose FSAL.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It removes the browser and Java Web Start dependencies, gives the IT team better control over the client runtime, and provides a more predictable operational model.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The final choice should nevertheless be validated against:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The Oracle Forms version<\/li>\n\n\n\n<li>The certified client Java version<\/li>\n\n\n\n<li>The SSO implementation<\/li>\n\n\n\n<li>WebUtil and custom JAR usage<\/li>\n\n\n\n<li>JavaScript integration<\/li>\n\n\n\n<li>Proxy and TLS requirements<\/li>\n\n\n\n<li>The workstation deployment strategy<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">The key point is simple: <strong>Java Web Start is easier to expose through a URL, while FSAL is easier to control as a managed desktop application.<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><em>Oracle documentation<\/em><\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/docs.oracle.com\/en\/middleware\/developer-tools\/forms\/12.2.1.4\/working-forms\/deploying-applications.html\" target=\"_blank\" rel=\"noreferrer noopener\">Oracle Forms 12.2.1.4 \u2013 Client Configurations, Java Web Start and FSAL<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/docs.oracle.com\/en\/middleware\/developer-tools\/forms\/14.1.2\/working-forms\/oracle-forms-standalone-launcher.html\" target=\"_blank\" rel=\"noreferrer noopener\">Oracle Forms 14.1.2 \u2013 Forms Standalone Launcher<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/docs.oracle.com\/cd\/G29095_01\/developer-tools\/forms\/14.1.2\/working-forms\/working-oracle-forms.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Oracle Forms 14.1.2 \u2013 Working with Oracle Forms<\/a><\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>A customer recently asked me about the difference between Java Web Start and the Forms Standalone Launcher for running Oracle Forms applications. I found it a very good question. From the user\u2019s perspective, both methods look similar: the Forms application opens in its own Java window. The real difference is how the application is launched, [&hellip;]<\/p>\n","protected":false},"author":46,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":"","_members_access_role":[],"_members_access_error":""},"categories":[4226,2748],"tags":[721,313,96],"type_dbi":[],"class_list":["post-46823","post","type-post","status-publish","format-standard","hentry","category-oracle-fusion-middleware","category-weblogic","tag-fmw","tag-fusion-middleware","tag-oracle"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v28.4 (Yoast SEO v28.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Oracle Forms: Java Web Start or FSAL? - dbi Blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Oracle Forms: Java Web Start or FSAL?\" \/>\n<meta property=\"og:description\" content=\"A customer recently asked me about the difference between Java Web Start and the Forms Standalone Launcher for running Oracle Forms applications. I found it a very good question. From the user\u2019s perspective, both methods look similar: the Forms application opens in its own Java window. The real difference is how the application is launched, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/\" \/>\n<meta property=\"og:site_name\" content=\"dbi Blog\" \/>\n<meta property=\"article:published_time\" content=\"2026-09-17T07:30:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-09-17T07:30:53+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1672\" \/>\n\t<meta property=\"og:image:height\" content=\"941\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"David Diab\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"David Diab\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/\"},\"author\":{\"name\":\"David Diab\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/deb907c3360cacdc6c7df54b4bac3c86\"},\"headline\":\"Oracle Forms: Java Web Start or FSAL?\",\"datePublished\":\"2026-09-17T07:30:51+00:00\",\"dateModified\":\"2026-09-17T07:30:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/\"},\"wordCount\":1193,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/09\\\/JWS_VS_FSAL-1024x576.png\",\"keywords\":[\"FMW\",\"Fusion Middleware\",\"Oracle\"],\"articleSection\":[\"Oracle Fusion Middleware\",\"WebLogic\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/\",\"name\":\"Oracle Forms: Java Web Start or FSAL? - dbi Blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/09\\\/JWS_VS_FSAL-1024x576.png\",\"datePublished\":\"2026-09-17T07:30:51+00:00\",\"dateModified\":\"2026-09-17T07:30:53+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/deb907c3360cacdc6c7df54b4bac3c86\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/09\\\/JWS_VS_FSAL.png\",\"contentUrl\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/wp-content\\\/uploads\\\/sites\\\/2\\\/2026\\\/09\\\/JWS_VS_FSAL.png\",\"width\":1672,\"height\":941},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/oracle-forms-java-web-start-or-fsal\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Oracle Forms: Java Web Start or FSAL?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/\",\"name\":\"dbi Blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/#\\\/schema\\\/person\\\/deb907c3360cacdc6c7df54b4bac3c86\",\"name\":\"David Diab\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g\",\"caption\":\"David Diab\"},\"url\":\"https:\\\/\\\/www.dbi-services.com\\\/blog\\\/author\\\/david-diab\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Oracle Forms: Java Web Start or FSAL? - dbi Blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/","og_locale":"en_US","og_type":"article","og_title":"Oracle Forms: Java Web Start or FSAL?","og_description":"A customer recently asked me about the difference between Java Web Start and the Forms Standalone Launcher for running Oracle Forms applications. I found it a very good question. From the user\u2019s perspective, both methods look similar: the Forms application opens in its own Java window. The real difference is how the application is launched, [&hellip;]","og_url":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/","og_site_name":"dbi Blog","article_published_time":"2026-09-17T07:30:51+00:00","article_modified_time":"2026-09-17T07:30:53+00:00","og_image":[{"width":1672,"height":941,"url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL.png","type":"image\/png"}],"author":"David Diab","twitter_card":"summary_large_image","twitter_misc":{"Written by":"David Diab","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/#article","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/"},"author":{"name":"David Diab","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/deb907c3360cacdc6c7df54b4bac3c86"},"headline":"Oracle Forms: Java Web Start or FSAL?","datePublished":"2026-09-17T07:30:51+00:00","dateModified":"2026-09-17T07:30:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/"},"wordCount":1193,"commentCount":0,"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL-1024x576.png","keywords":["FMW","Fusion Middleware","Oracle"],"articleSection":["Oracle Fusion Middleware","WebLogic"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/","url":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/","name":"Oracle Forms: Java Web Start or FSAL? - dbi Blog","isPartOf":{"@id":"https:\/\/www.dbi-services.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/#primaryimage"},"image":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL-1024x576.png","datePublished":"2026-09-17T07:30:51+00:00","dateModified":"2026-09-17T07:30:53+00:00","author":{"@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/deb907c3360cacdc6c7df54b4bac3c86"},"breadcrumb":{"@id":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/#primaryimage","url":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL.png","contentUrl":"https:\/\/www.dbi-services.com\/blog\/wp-content\/uploads\/sites\/2\/2026\/09\/JWS_VS_FSAL.png","width":1672,"height":941},{"@type":"BreadcrumbList","@id":"https:\/\/www.dbi-services.com\/blog\/oracle-forms-java-web-start-or-fsal\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.dbi-services.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Oracle Forms: Java Web Start or FSAL?"}]},{"@type":"WebSite","@id":"https:\/\/www.dbi-services.com\/blog\/#website","url":"https:\/\/www.dbi-services.com\/blog\/","name":"dbi Blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dbi-services.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.dbi-services.com\/blog\/#\/schema\/person\/deb907c3360cacdc6c7df54b4bac3c86","name":"David Diab","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/212b1b2e4650bad3116f644ab4fb4663786d94195d7685d0704c8426da088e60?s=96&d=mm&r=g","caption":"David Diab"},"url":"https:\/\/www.dbi-services.com\/blog\/author\/david-diab\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/46823","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/users\/46"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/comments?post=46823"}],"version-history":[{"count":5,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/46823\/revisions"}],"predecessor-version":[{"id":46829,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/posts\/46823\/revisions\/46829"}],"wp:attachment":[{"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/media?parent=46823"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/categories?post=46823"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/tags?post=46823"},{"taxonomy":"type","embeddable":true,"href":"https:\/\/www.dbi-services.com\/blog\/wp-json\/wp\/v2\/type_dbi?post=46823"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}