• 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:

JNLPFile error in webstart

 
Ranch Hand
Posts: 79
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
in what case we get following error in java webstart
JNLPException[category: Security Error : Exception: null : LaunchDesc: null ]
at com.sun.javaws.LaunchDownload.checkSignedResourcesHelper(Unknown Source)
at com.sun.javaws.LaunchDownload.checkSignedResources(Unknown Source)
at com.sun.javaws.Launcher.continueLaunch(Unknown Source)
at com.sun.javaws.Launcher.handleApplicationDesc(Unknown Source)
at com.sun.javaws.Launcher.handleLaunchFile(Unknown Source)
at com.sun.javaws.Launcher.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)

Any solution/help My JNLP file
<?xml version="1.0" encoding="windows-1252"?>
<jnlp spec="1.0" codebase="http://LocalHost:8080/Workspace1-clien1-context-root ">
<information>
<title>Bug Test</title>
<vendor>Vendor</vendor>
<description>My Project</description>
</information>
<security><all-permissions/></security>
<resources>
<j2se version="1.3"/>
<jar href="some.jar" />
<jar href="my.zip" />
<extension name="common" href= "local.jsp" />
</resources>
<application-desc main-class="mainClass"/>
</jnlp>
[ May 10, 2003: Message edited by: aminur rashid ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic