Application does not show up in the manager console -- Java Web Start

Hi...

I have downloaded the jnlp file so many times but still the aplcation is not displayed in the JWS manager console.

This my jnlp file : -

<?xml version="1.0" encoding="UTF-8"?>

<jnlp spec="1.0+" codebase="http://2m6:8100/jws/" href="ChatApplication.jnlp">

<information>

<title>Chat Trial</title>

<vendor>SAI</vendor>

<description>Just an example</description>

<icon href="images/icon.gif"/>

</information>

<security>

<all-permissions />

</security>

<resources>

<j2se version="1.3"/>

<jar href="chatapplication.jar"/>

</resources>

<application-desc main-class="ChatImpl"/>

</jnlp>

Can anyone give me any suggestions? They are welcome.

-Sid

[915 byte] By [siddharthoak] at [2007-9-26 1:40:32]
# 1

I ported another applet over by using the applet-desc tag. an example would be like

<applet-desc name="babylon" main-class="babylonApplet" documentbase="http://ipaddresshere/chat/" width="500" height="450">

<param name="autoconnect" value="yes"/>

<param name="hidecanvas" value="no"/>

<param name="hidetext" value="no"/>

<param name="locksettings" value="no"/>

<param name="portnumber" value="12468"/>

<param name="servername" value="ipaddresshere"/>

<param name="username"/>

</applet-desc>

this would be used in place of the <application-desc main-class-"chatimpl"/> tag....it worked for me.

hope this helps.

toddcarr at 2007-6-29 2:31:04 > top of Java-index,Desktop,Deploying...
# 2

there is something wrong with the jnlp spec line.

I have an example where I leave out href and the application is stored in the cache and

launches, but no icon comes up in the manager.

This might be a feature rather than a bug.

Did you look in the cache for your app?

ggcampbell at 2007-6-29 2:31:04 > top of Java-index,Desktop,Deploying...