Problem loading jnlp file with Mozilla (IE ok) - NOT a mime issue

I have problems loading my app from mozilla browsers. It works perfectly with Internet Explorer.

I said is not related with mime types as I can load many other public applications.

The case is that the browser recognizes de jnlp file, ask me for permissions and finally load the application, however it just do nothing. I have enabled java console and there is no exception message, the application just shutdown. And as I said before this works perfectly with Internet Explorer.

For more information, i磎 using a tomcat local server, one single jar file, and all-permissions (as i need to read some configuration files). I've try different and many ways to manage this, but for now it seems to be impossible.

[735 byte] By [MGasaa] at [2007-10-2 14:45:05]
# 1
Try running some of the Web Start demo programs in the Java Tutorial - there are a bunch in the Swing lessons - if they work, then you have a code or configuration problem.
ChuckBinga at 2007-7-13 13:17:41 > top of Java-index,Desktop,Deploying...
# 2

Finally I managed to solve the problem; it was a jnlp compliance problem related with the code. I was using a FileInputStream("...") to get a file resource, but using the getRecource mechanism instead, the application works fine.

What I can't understand yet is why the application was working with IE but not with Mozilla ( it shouldn't have worked with any of them); that was so confusing...

thx 4 your support!

MGasaa at 2007-7-13 13:17:41 > top of Java-index,Desktop,Deploying...