• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

jnlp file error

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
our jnlp file occours error when launching the jnlp file through java web start.the error is "JAR resources in JNLP file are not signed by same certificate".
our jnlp file is given below:
---------------------------------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for SwingSet2 Demo Application -->
<jnlp
codebase="file:///home/guest/scormplayer/editor"
href = "EditorFrame.jnlp" >
<!--jnlp
codebase = "http://172.28.44.20:8080/EditorFrame" href = "EditorFrame.jnlp" -->
<information>
<title>ReloadEditor</title>
<vendor>ReloadTools</vendor>
<homepage href="http://www.google.com" />
<description>ReloadEditor</description>
<description kind="short">A demo of the capabilities
of the ReloadEditor Graphical User Interface.</description>
<icon href="file:///home/guest/scormplayer/editor/reload-editor.gif"/>
<offline-allowed/>
<security>
<all-permissions/>
</security>

</information>
<resources>
<j2se version="1.4+"/>

<jar href="file:///home/guest/scormplayer/editor/reload-editor.jar" />
<jar href="file:///home/guest/scormplayer/editor/lib/castor-0.9.5.3-xml.jar" />
<jar href="file:///home/guest/scormplayer/editor/lib/jdom.jar" />
<jar href="file:///home/guest/scormplayer/editor/lib/reload-diva.jar" />
<jar href="file:///home/guest/scormplayer/editor/lib/reload-dweezil.jar" />
<jar href="file:///home/guest/scormplayer/editor/lib/reload-jdom.jar" />
<jar href="file:///home/guest/scormplayer/editor/lib/reload-moonunit.jar" />
<jar href="file:///home/guest/scormplayer/editor/lib/reload-support.jar" />
<jar href="file:///home/guest/scormplayer/editor/lib/xercesImpl.jar" />
<jar href="file:///home/guest/scormplayer/editor/lib/xml-apis.jar" />
<jar href="file:///home/guest/scormplayer/editor/lib/AppleJavaExtensions.jar"/>
</resources>
<application-desc main-class="uk.ac.reload.editor.EditorFrame"/>
</jnlp>
------------------------------------------------------------------------
plz give reply.
thanks...
reply
    Bookmark Topic Watch Topic
  • New Topic