• 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
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

launching/running the application

 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi sir m running the scorm applicatiovn through jnlp but its occour some error
that is given below.
----------------------------------------------------
Category: Launch File Error

The following required field is missing from the launch file: <jnlp>(<application-desc>|<applet-desc>|<installer-desc>|<component-desc>
-----------------------------------------------------------------------
and our player.jnlp file given below.
************************************************
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for SwingSet2 Demo Application -->
<jnlp
codebase="file:///home/guest/seema/ScormPlayer/"
href = "Player.jnlp" >
<!--jnlp
codebase = "http://172.28.44.20:8080/EditorFrame" href = "EditorFrame.jnlp" -->
<information>
<title>ScormPlayer</title>
<vendor>Scorm</vendor>
<homepage href="http://www.google.com" />
<description>Player</description>
<description kind="short">A demo of the capabilities
of the ReloadEditor Graphical User Interface.</description>
<icon href="file:///home/guest/seema/ScormPlayer/reload-scormplayer.gif"/>
<offline-allowed/>
<security>
<all-permissions/>
</security>

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

<jar href="file:///home/guest/seema/ScormPlayer/scorm.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/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"/>
<application-desc main-class="uk.ac.reload.scormplayer.client.gui.ScormPlayerFrame"/>
</jnlp>
**********************************************************************
plz reply soon.
thanks
 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
you seem to be missing a </resource> after you listing of resources...
 
reply
    Bookmark Topic Watch Topic
  • New Topic