On the applets that will be discontinued, I used netbeans java web start but it did not work with the chrome browser

0

I really need to know the whole to use the java web start plugin free, as I know it has a solution; What would be the best technique for launching applets in the chrome browser?

I generated the launch.html, test.jar, and test2.jnlp files in netbeans. Even so, nothing works in chrome.

Follows:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jnlp codebase="http://localhost:8080/hello" href="launch.jnlp" spec="1.0+">
<information>
    <title>appletJavaWS</title>
    <vendor>aline.gonzaga</vendor>
    <homepage href=""/>
    <description>appletJavaWS</description>
    <description kind="short">appletJavaWS</description>
</information>
<update check="background"/>
<security>
    <all-permissions/>
</security>
<resources>
  <j2se version="1.5+"/>
  <jar href="appletJavaWS.jar" main="true"/>
</resources>
    <application-desc main-class="Principal">
    </application-desc>
</jnlp>  

The launch.html:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
    <title>Test page for launching the application via JNLP</title>
</head>
    <body>
        <h3>Test page for launching the application via JNLP</h3>
    <script src="http://java.com/js/deployJava.js"></script><script>deployJava.createWebStartLaunchButton("launch.jnlp")
    </script>
    <!-- Or use the following link element to launch with the application -->
    <!--
    <a href="launch.jnlp">Launch the application</a>
    -->
    </body>
</html>

And the jar. Someone give me a light? Java web start is very new to me.

    
asked by anonymous 25.04.2016 / 15:06

0 answers