Problème de lancement d'une application avec JWS
Bonjour,
Lorsque je lance mon jws a partir d'une page html, l'icone 'Java starting' apparait puis plus rien. Je n'ai aucun message d'erreur.
Quelqu'un saurait-il d'où cela peut venir? Ou comment je peux visualiser les erreurs?
Voici mon fichier jnlp:
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://localhost:8080/javawebstart/" href="word.jnlp">
<information>
<title>word</title>
<vendor>Sophie</vendor>
<homepage href="http://localhost:8080/"/>
<description>myApp</description>
<description kind="short">une application de test</description>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.5+" href="http://java.sun.com/products/autodl/j2se"/>
<jar href="http://localhost:8080/javawebstart/word.jar"/>
</resources>
<application-desc main-class="prog.Word" />
</jnlp> |
et ma page html:
Code:
1 2 3 4 5 6 7 8 9 10 11 12
|
<html>
<head>
<title>Logiciels</title>
</head>
<body>
<br>
<a href="word.jnlp">word</a>
</body>
</html> |
Merci d'avance,
Sophie