aspose file tools
The moose likes JNLP and Web Start and the fly likes JNLP application not working properly Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JNLP and Web Start
Reply Bookmark "JNLP application not working properly" Watch "JNLP application not working properly" New topic
Author

JNLP application not working properly

Renjith Mohan
Ranch Hand

Joined: Nov 28, 2008
Posts: 65


I have developed one JNLP application. Java webstart launcher starts the application. The first window appears nice on the screen(Its an application loading screen). The problem is when it completes cent percent loading, subsequent pages are not being displayed.

Here is my jnlp file:

<jnlp spec="1.0+" codebase="http://localhost:8087/WebApplication20"
href="quickStart.jnlp">
<information>
<title>DatabaseClient Test Environment</title>
<vendor>http://localhost:8087/WebApplication20</vendor>
<description>DatabaseClient Test Environment</description>
<description kind="short">DatabaseClient Test Environment</description>
<offline-allowed/>
</information>
<offline-allowed/>
<security>
<all-permissions/>
</security>
<resources>
<property name="jnlp.packEnabled" value="true"/>
<j2se version="1.5+" />
<jar href="substance.jar" download="eager" main="false"/>
<jar href="swingx.jar" download="eager" main="false"/>
<jar href="DatabaseClient.jar" download="eager" main="true"/>
</resources>
<application-desc main-class="com.databaseclient.ApplicationTrigger" />
</jnlp>

Iam using java6 version.

Is there any option for logging in jnlp??

Anticipating immediate replies

Thank you
Maneesh Godbole
Saloon Keeper

Joined: Jul 26, 2007
Posts: 8439

You can open the java console when the JWS app is running and see what kind of errors you get there.
On Windoze you can open it by setting->control panel->java->advanced tab->java console


[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
Renjith Mohan
Ranch Hand

Joined: Nov 28, 2008
Posts: 65

Thanks Maneesh,
The problem was solved anyhow. I think it might be due to different versions of java being used in my system.

Anyways thanks for your comment
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: JNLP application not working properly
 
Similar Threads
problem to set classpath
Unable to launch the web start application
problem during loading third party jar
Error is coming while launching the application
Please Help me Out.....Where I am going Wrong