Login  Register

Re: Help with JOGL and Java Web Start!

Posted by kinglui987 on Apr 24, 2012; 11:12pm
URL: https://forum.jogamp.org/Help-with-JOGL-and-Java-Web-Start-tp3936041p3936924.html

of course, here it is.

<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="1.0+" codebase="http://localhost/project/" href="j.jnlp">
    <information>
        <title>App-Name</title>
        <vendor>Vendor</vendor>
        <offline-allowed/>
	<homepage href="http://www.mypage.org" />
	<description>Descrition</description>
	 <shortcut online="false">
              <desktop/>
        </shortcut>

    </information>
<update check="background" policy="always"/>

  <security>
	<all-permissions/> 
  </security>

    <resources>
        <j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se" initial-heap-size="256m" max-heap-size="512m"/>
	<jar href="app.jar" main="true" />
	<jar href="http://localhost/project/libs/gluegen-rt.jar"/>
	<jar href="http://localhost/project/libs/jogl.jar"/>
    </resources>

    <resources os="Mac OS X">
        <nativelib href = "http://localhost/project/libs/gluegen-rt-natives-macosx-universal.jar" />
        <nativelib href = "http://localhost/project/libs/jogl-natives-macosx-universal.jar" />
    </resources>

    <application-desc
         name="App-Name"
         main-class="fullQualified.package.Name"
         width="1024"
         height="768">
     </application-desc>
     <update check="background"/>
</jnlp>


I hope everything is fine with it. I checked the urls servel times. The jar files are all signed using the same keystore.
I test this using xampp, at the moment it is satisfactory when it works on os x.
I'm sure it has something to do with the failure of loading the file, although it is not an important file.
At the moment this is the only difference i can recognize.

thanks