Bonjour,

J'ai un souci avec mon applet. Elle tourne très bien mais je dois la mettre en JNLP car dans certaines situations la mémoire max de la JVM doit être augmentée sinon ça plante.

Le souci est qu'en JNLP ça plante. Ca me met un message Erreur:cliques pour plus d'informations et on ne peut pas cliquer. Par contre j'ai des erreurs dans la consoles mais je ne les comprends pas :
Missing Application-Name: manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Permissions manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Codebase manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Application-Name: manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Permissions manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Codebase manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Application-Name: manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Permissions manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Codebase manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Application-Name: manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Permissions manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Codebase manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Application-Name: manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Permissions manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Missing Codebase manifest attribute for: http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar
Mon 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
30
31
32
33
34
35
36
<jnlp spec="1.0+" codebase="http://localhost/PrestashopChili/modules/spyprices/applet/">
 
 <information>
        <title>Analyzer for SpyPrices</title>
        <vendor>Net sur 2</vendor>
        <homepage href="http://localhost/PrestashopChili/modules/spyprices/applet/"/>        
 </information>
 
    <security>
        <all-permissions />
    </security>
 
    <resources>
        <j2se version="1.5+"
            href="http://java.sun.com/products/autodl/j2se" 
            initial-heap-size="512m" 
            max-heap-size="1024m"
            java-vm-args="-noverify" />
 
        <jar href="http://localhost/PrestashopChili/modules/spyprices/applet/applet.jar" main="true" download="eager" />
        <jar href="http://localhost/PrestashopChili/modules/spyprices/applet/commons-codec-1.6.jar" download="eager" />
        <jar href="http://localhost/PrestashopChili/modules/spyprices/applet/commons-logging-1.1.3.jar" download="eager" />
        <jar href="http://localhost/PrestashopChili/modules/spyprices/applet/fluent-hc-4.3.1.jar" download="eager" />
        <jar href="http://localhost/PrestashopChili/modules/spyprices/applet/httpclient-4.3.1.jar" download="eager" />
        <jar href="http://localhost/PrestashopChili/modules/spyprices/applet/httpclient-cache-4.3.1.jar" download="eager" />
        <jar href="http://localhost/PrestashopChili/modules/spyprices/applet/httpcore-4.3.jar" download="eager" />
        <jar href="http://localhost/PrestashopChili/modules/spyprices/applet/httpmime-4.3.1.jar download="eager"" />
        <jar href="http://localhost/PrestashopChili/modules/spyprices/applet/jsoup-1.7.3.jar" download="eager" />    
    </resources>
 
    <applet-desc name="netsur2Analysis" main-class="netsur2.Applet_VeilleConcurentielle" width="600" height="400">
        <param name="lien" value="http://localhost/PrestashopChili/modules/spyprices/pages/communication.php?clef=35518343">
        <param name="pasRapprochementsTextes" value="0">
        <param name="forcerMaj" value="1">
    </applet-desc>
</jnlp>
Je précise que les fichiers jar sont signés avec la dernière version du JDK.

Quelqu'un saurait-il m'indiquer comment résoudre ce problème ?

Merci d'avance pour votre aide.