Applet + The Eternal Blank Screen
in
Integration and Hardware
•
1 year ago
Good Morning,
I developed a data visualization applet that is supposed to run on a browser. I exported the applet, I signed the jars, I created the JNLP file and the applet still won't start. Curiosly, the first time that I exported the applet, using a previous version of Processing, things, seemingly, went quite well. But then I noticed that the applet would only start in computers with OSX Tiger. Now, when I check the Java Console for errors I get this perfect log: Applet.init Applet.start I am using opengl, toxiclibs and gicentre utils as libraries. And here is the JNLP file that I wrote:
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="" href="">
<information>
<title>UCP Cloud</title>
<vendor>Diogo Tudela</vendor>
<icon href="http://diogotudela.com/cloud/loading.gif"/>
<desktop/>
<offline-allowed/>
<shortcut online="false">
<desktop/>
</shortcut>
</information>
<resources>
<j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
<jar href="http://diogotudela.com/cloud/core.jar" main="true" />
<jar href="http://diogotudela.com/cloud/gicentreUtils.jar" main="true" />
<jar href="http://diogotudela.com/cloud/opengl.jar" main="true" />
<jar href="http://diogotudela.com/cloud/toxiclibscore.jar" main="true" />
<jar href="http://diogotudela.com/cloud/UCPcloudNEW.jar" main="true" />
<jar href="http://diogotudela.com/cloud/verletphysics.jar" main="true" />
</resources>
<application-desc
name="UCPcloud"
main-class="UCPcloudNEW"
width="1280"
height="768">
</application-desc>
<update check="background"/>
</jnlp>
Here is the URL for the applet:
I really need to get this thing working soon,
so any help is much appreciated!
Thanks for your time.
Best Regards,
////////////////////////////////////
www.diogotudela.com
1