Bonjour,

J'ai créé un application java qui se lance via java web start. Le fichier jnlp indique bien les librairies jar à utiliser comme ressource, mais celle-ci ne sont jamais téléchargé par les environnements mac et windows, alors que je n'ai aucun problème de téléchargement avec linux.

Savez-vous quelle est la cause de ce problème?

Je vous joins le code du 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
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<jnlp codebase="https://www.fasteris.com/apps" href="launch.jnlp" spec="1.0+">
    <information>
        <title>appMISIS</title>
        <vendor>Jonathan Seguin, Fasteris SA, Plan-les-Ouates - Institute of Botanny, University of Basel - Switzerland</vendor>
        <homepage href=""/>
        <description>appMISIS, a tool to find hot/cold spots or SNPs on small size genome (e.g. virus).</description>
        <description kind="short">appMISIS</description>
    <offline-allowed/>
</information>
    <update check="background"/>
    <security>
<all-permissions/>
</security>
    <resources>
        <j2se java-vm-args="-Xmx1g -Xms1g" version="1.7+"/>
        <jar href="appMISIS.jar" main="true"/>
    <jar href="lib/biojava3-core-3.0.7.jar"/>
<jar href="lib/sam-1.77.jar"/>
<jar href="lib/jackson-annotations-2.1.1.jar"/>
<jar href="lib/jackson-core-2.1.1.jar"/>
<jar href="lib/jackson-databind-2.1.1.jar"/>
<jar href="lib/jersey-client-1.18.1.jar"/>
<jar href="lib/jersey-core-1.18.1.jar"/>
<jar href="lib/PDFRenderer-0.9.0.jar"/>
</resources>
    <application-desc main-class="appmisis.Main">
    </application-desc>
</jnlp>
Merci d'avance