Bonjour j'ai crée un fichier web start. il ne me retourne aucun problème mais il ne lance pas mon fichier jar. voici le code que j'utilise

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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+" codebase="http://localhost/prog/" href="logiciel.jnlp">
 
    <information>
  <title>Alter-SIG</title>
  <vendor>Johann Sorel</vendor>
  <homepage href="http://localhost/"/>
 
<description>Alter-SIG</description>
  <description kind="short">Logiciel 3D SIG Java, technologie de
            déploiement JWS/JNLP</description>
  <description kind="tooltip">Alter-SIG</description>
 
<icon href="http://localhost/prog/Logo2.png" width="64"
            height="64"/>
  <offline-allowed />
 </information>
 
 <security>
 
 </security>   
 
 <resources>
  <j2se version="1.5+"/>
  <jar href="dist/Presence.jar" main="true" download="eager" />
  <jar href="lib/looks-2.0.1.jar" />  
 
 </resources>
 
<resources os="Windows">
  <nativlib href="lib/winnativ.dll.jar" />  
 </resources>
      <resources os="Linux">
  <nativlib href="lib/linuxnativ.so.jar" /> 
</resources>
 
 <application-desc main-class="presence.Presence">
  <argument>-jconsole disable</argument>
  <argument>show</argument>
 </application-desc>
 
 </jnlp>