• 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
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

nothing is displayed after the application is loaded

 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
when i try to load my application by clicking on a link which specifies path to my JNLP file, nothing is happeing...it shows that it is downloading my application (i can say this coz my <title> is showed properly) and then the processing stops and nothing is displayed...no exception/error is also shown. my JNLP file is as follows:

<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for Demo Application -->
<jnlp spec="1.0+" codebase="http://localhost:8080/mypath/test/" href="TestJavaWebStart1.jnlp">
<information>
<title>DemoApplication</title>
<vendor>Test Software inc.</vendor>
<description kind="short">A demo of the capabilities of the Swing Graphical User Interface.</description>
<offline-allowed/>
</information>
<security>

</security>
<resources>
<j2se version="1.3"/>
<jar href="test.jar" main="true"/>
</resources>
<application-desc main-class="com.test.main.temp"/>
</jnlp>
 
Ranch Hand
Posts: 243
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try turning on webstart logging and have a look at the resulting log file after you try to download and run. Sounds like the application is failing suddenly and exits without doing anything.

Cheers, Jared.
 
Always look on the bright side of life. At least this ad is really tiny:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic