je fais un petit test avec JAVA WEB START, dans le but de l'utiliser avec une plus grosse application par la suite.

j'ai mon test.java
avec mon jar signée contenant le test.class
j'ai ma page html avec un lien qui permet de lancer le fichier .jnlp qui ressemble à ça:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
 
<?xml version="1.0" encoding="utf-8"?>
<!-- JNLP File for SwingSet2 Demo Application -->
<jnlp spec="1.0+" codebase="http://localhost:8080/" href="applicationSimple.jnlp">
  <information>
    <title>Test Application Simple</title>
    <vendor>name</vendor>
    <homepage href="http://localhost:8080/"/>
    <description> Test Application</description>
    <description kind="short">un Test </description>
 
    <offline-allowed/>
  </information>
  <security>
    <all-permissions/>
  </security>
  <resources>
    <j2se version="1.3+"/>
    <jar href="applicationSimple.jar" main="true"/>
  </resources>
  <application-desc main-class="ApplicationSimple"/>
</jnlp>
je lance tomcat, puis je lance ma page html, je clik sur le lien et ca marque "impossible de lancer l'application..." et dans "Détails"
j'ai "Unable to load resource: http://localhost:8080/applicationSimple.jnlp"


Si quelqu'un a une idée? j'ai besoin d'aide