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:29]
# 1
Do you have the radio button for Downloaded Applications selected in the View menu of the application manager?
shoushou at 2007-6-29 2:30:58 > top of Java-index,Desktop,Deploying...
# 2
Try deleting your ~/.javaws/cache; my application wouldn't appear in the main JavaWS window either. Now, I had been in my ~/.javaws/ directory, and had deleted some things by hand, so I may have put it in an unknown state that needed to be cleaned up...B-)
wrwadley at 2007-6-29 2:30:58 > top of Java-index,Desktop,Deploying...
# 3

Actually this problem usually occurs as a result of the way you have configured your href line for the jnlp file. If you are still having some problems try putting in:

href="http://2m6:8100/jws/ChatApplication.jnlp"

See if that helps it at all. It's possible that it's not using the relative reference combined with the codebase URL given.

jtottenham at 2007-6-29 2:30:58 > top of Java-index,Desktop,Deploying...
# 4
I know there used to be a bug related to specifying a port number in the codebase - anything other than default will give you this problem. Not sure if this was fixed in 1.0.1John
j9archer at 2007-6-29 2:30:58 > top of Java-index,Desktop,Deploying...
# 5
Open webstart console. Look over error message!
wflm at 2007-6-29 2:30:58 > top of Java-index,Desktop,Deploying...