Bonjour,

webstart ne me propose pas de produire les shortcuts sur un Window XP (pas essaye les autres OS). Voici mon test:
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
 
<?xml version="1.0" encoding="UTF-8"?>
<jnlp spec="6.0+" codebase="http://localhost:8080/SWjsfClient/pages" href="appli.jnlp">
 
    <information>
        <title>Appli</title>
        <vendor>alec.net</vendor>
        <icon href="demo.jpg" kind="splash"/>
        <icon href="demo.jpg" kind="shortcut"/>
        <icon href="demo.jpg" kind="default"/>
 
         <offline-allowed/> 
     <shortcut online="false">
      <desktop/>
      <menu submenu="My Corporation Apps"/>
    </shortcut>
 
 
 
    </information>
   <security>
      <all-permissions/>
  </security>
    <resources>
        <!-- Application Resources -->
        <j2se version="1.5+" />
        <jar href="signed.jar" main="true" />
    </resources>
 
    <application-desc
         name="Appli"
         main-class="com.me.MainFrame"
         width="1000"
         height="500">
     </application-desc>
     <update check="background"/>
</jnlp>