Bonjour!!

J'ai une application que je souhaite lancer avec Java Web Start!!
Mais j'ai un problème lorsque je lance l'appli, il ne se passse rien pourtant je specifie bien le fichier main!!

Auriez vous une idée du pb!!

Je n'ai aucun message d'erreur.

Voici mes fichiers :

Le fichier jnlp

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
 
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://localhost/vma/" href="run.jnlp">
  <information>
    <title>Mon Application</title>
    <vendor>Karima Aissiou</vendor> 
    <homepage href="http://localhost/vma/"/>
    <description>IBM VMA</description>
    <description kind="short">une application de test</description>
    <offline-allowed/>
  </information>
  <security> 
  </security>
  <resources>
    <j2se version="1.4"/>
    <jar href="vmaSigne.jar"/>
  </resources>
 <application-desc main-class="vma_gui.VMA_Frame" />
</jnlp>
Est voici le fichier html

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
 
<html>
<head>
<title>IBm VMA</title>
</head>
<body>
<H1>VMA</H1>
<a href="http://localhost/vma/run.jnlp">Lancez l'application</a>
</body>
</html>
Modéré par zekey: correction des balises code