Hey everyone,
I’ve been googling and searching forums, but have not found the solution to a problem I’m seeing. Basically, I’ve got a simple little test-game I wrote with libgdx, and set it up to run with webstart. This works with windows xp, linux, and even Mac OS. It does not run on Windows 7. In the latter case, it appears like it is going to launch (shows the java 6 popup) but then just disappears after a moment. Very strange. I tried running the browser on Windows 7 as admin, and fiddled with security option, no luck.
Here is the jnlp file:
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://empireforge.com/mazedog/" href="mazedog.jnlp">
<information>
<title>Jnlp Testing</title>
<vendor>Jeff Sullins</vendor>
<homepage href="http:empireforge.com/" />
<description>Mazedog simple game</description>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.6+" />
<extension name="lwjgl" href="http://lwjgl.org/jnlp/extension.php" />
<jar href="mazedog.jar"/>
<jar href="assets.jar"/>
<jar href="libs/gdx-backend-lwjgl-natives.jar"/>
<jar href="libs/gdx-backend-lwjgl.jar"/>
<jar href="libs/gdx-natives.jar"/>
<jar href="libs/gdx.jar"/>
</resources>
<application-desc main-class="aStarMaze.main.DesktopLauncher" />
</jnlp>
Here are the contents of the .htaccess file on the web server:
AddType application/x-java-jnlp-file .jnlp