I have a gwt based application that tries to launch an applet via jnlp file(jws). Something like this: How to display java applet inside GWT page?
Instead of directly launching the applet , I am specifying the parameter jnlp_href to use a jnlp file to launch it.
My jnlp file looks something like-
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.6+" codebase="." href="jconsole.jnlp">
<information>
<title>JConsole WebStart</title>
<description>Launching JCOnsole via web start</description>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se" />
<jar href="launchJConsoleAppletForRose.jar" main="true"/>
<jar href="common.jar"/>
</resources>
<applet-desc
name="MyJConsoleApplet"
main-class="rose.applet.LaunchJConsole"
width="100%"
height="100%">
</applet-desc>
The issue here is it starts up fine in IE11 and firefox. I enabled debugging and show console and I get proper console messages when the applet is launched via jnlp. However, it does not work with chrome v 47.0. The window just disappears after few seconds. There are no log messages, stack trace or console output. Any idea how to debug this or what could be wrong?