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

Displaying Starting Application Progress bar

 
Ranch Hand
Posts: 104
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,
I'm new to JNLP. I have setup the application in web server with jnlp file. When I call the jnlp file present in web server from jsp. It launched a web start and it is continuously displaying 'Starting application...' progress bar. It is not displaying any errors and it is not launching the application.

Verified mime type in tomcat and everything is ok.

Please give me a clue what could be the problem..

Thanks,
sam
[ June 11, 2007: Message edited by: sammaiah kyatham ]
 
sam ky
Ranch Hand
Posts: 104
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
After modifying security tag with all permissions, I got below exception
JNLPException[category: Security Error : Exception: null : LaunchDesc:

<jnlp spec="1.0+" codebase="http://10.20.4.61:8080/VS_APP/" href="http://10.20.4.61:8080/VS_APP/vsapp.jnlp">

<information>

<title>Virgin Kiosk Application</title>

<vendor>TCS Limited.</vendor>

<homepage href="http://10.20.4.61:8080/VS_APP/docs/help.html"/>

<description>This is a Virgin Kiosk Application</description>

<description kind="short">Kiosk App</description>

<description kind="one-line">This is a Virgin Kiosk Application</description>

<description kind="tooltip">This is a Virgin Kiosk Application</description>

<icon href="http://10.20.4.61:8080/VS_APP/images/logo.gif" kind="default"/>

<offline-allowed/>

</information>

<security>

<all-permissions/>

</security>

<resources>

<j2se initial-heap-size="-1" max-heap-size="-1" version="1.3+"/>

<jar href="http://10.20.4.61:8080/VS_APP/lib/cussvs.jar" download="eager" main="false"/>

</resources>

<application-desc main-class="com.arinc.asd.cussvs.VSCUSSApp">

<argument>http://10.20.4.61:8080/VS_APP/resources/config.xml</argument>;

</application-desc>

</jnlp> ]

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)


Here is my JNLP file
<?xml version="1.0" encoding="utf-8"?>

<jnlp
spec="1.0+"
codebase="http://10.20.4.61:8080/VS_APP"
href="vsapp.jnlp">
<information>
<title>Virgin Kiosk Application</title>
<vendor>TCS Limited.</vendor>
<homepage href="docs/help.html"/>
<description>This is a Virgin Kiosk Application</description>
<description kind="short">Kiosk App</description>
<icon href="images/logo.gif"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.3+"/>
<jar href="lib/cussvs.jar"/>
</resources>

<application-desc main-class="com.arinc.asd.cussvs.VSCUSSApp">
<argument>http://10.20.4.61:8080/VS_APP/resources/config.xml</argument>;
</application-desc>

</jnlp>

It seems some security problem: checkSignedResourcesHelper

Any help would be appreciated!!!
Thanks,
Sam
 
my overalls have superpowers - they repel people who think fashion is important. Tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic