IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Applets Java Discussion :

Erreur "Missing Application-Name: manifest attribute"


Sujet :

Applets Java

  1. #1
    Membre régulier
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    676
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2006
    Messages : 676
    Points : 121
    Points
    121
    Par défaut Erreur "Missing Application-Name: manifest attribute"
    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.

  2. #2
    Membre régulier
    Profil pro
    Inscrit en
    Juillet 2006
    Messages
    676
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2006
    Messages : 676
    Points : 121
    Points
    121
    Par défaut
    Je ne suis pas sûr que le problème vienne forcément de là. En tout cas mon application affiche "Erreur : cliquez ici pour voir les détail" et lorsque je clique rien ne s'affiche. Il y a un autre endroit que la console pour voir les erreurs ?

Discussions similaires

  1. Missing application-Name alors qu'il y est
    Par jejeman dans le forum Applets
    Réponses: 0
    Dernier message: 29/01/2014, 11h27
  2. [Débutant] Message Erreur : Unable to create a manifest resource name for...
    Par xavvdb003 dans le forum C#
    Réponses: 1
    Dernier message: 02/07/2012, 08h14
  3. [débutant] erreur "indice de liste hors limites(1)"
    Par lidouka dans le forum Langage
    Réponses: 2
    Dernier message: 13/12/2005, 14h31
  4. Réponses: 7
    Dernier message: 01/06/2005, 11h48

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo