Webstart once more

I’m still recieving “jars not signed by same source” errors. Code below, anyone any ideas? I read that this had been fixed in the new release, am I confused? should I vote republican ;D ?


<?xml version="1.0" encoding="utf-8"?>
<!-- Test GI21 Web Start Deployment -->
<jnlp spec="1.0+" codebase="http://www.atcy56.dsl.pipex.com/webstart" href="scs2jsm.jnlp"> 

      <information>
            <title>GI21 Coursework</title>
            <vendor>James McGivern - Independent Solutions</vendor>
            <description>Graphics Coursework</description>
            <description kind="short">Interactive Car Model</description>
            <offline-allowed/>
      </information>

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

      <resources>
            <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
            <jar href="https://jogl.dev.java.net/files/documents/27/8409/jogl.jar"/>
            <jar href="scs2jsm.jar"/>
      </resources>

      <resources os="Windows">
            <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
            <nativelib href="https://jogl.dev.java.net/webstart/jogl-natives-win32.jar"/>
      </resources>

      <resources os="SunOS" arch="sparc">
            <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
            <nativelib href="https://jogl.dev.java.net/webstart/jogl-natives-solsparc.jar"/>
      </resources>

      <resources os="Linux">
            <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
            <nativelib href="https://jogl.dev.java.net/webstart/jogl-natives-linux.jar"/>
      </resources>

      <resources os="Mac OS">
            <j2se href="http://java.sun.com/products/autodl/j2se" version="1.4+"/>
            <nativelib href="https://jogl.dev.java.net/webstart/jogl-natives-macosx.jar"/>
      </resources>

      <application-desc/>
</jnlp>


Thanks.
SNR

Found this works

Thanks flame.