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

Java EE Discussion :

[debutant] Erreur execution Client Ejb3 avec Jboss sous EclipseWTP [JNDI]


Sujet :

Java EE

  1. #1
    Membre actif Avatar de kore62
    Profil pro
    Inscrit en
    Août 2007
    Messages
    222
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France

    Informations forums :
    Inscription : Août 2007
    Messages : 222
    Points : 205
    Points
    205
    Par défaut [debutant] Erreur execution Client Ejb3 avec Jboss sous EclipseWTP
    bonjour j'ai deployé un ejb3.0 avec JBOSS et ECLIPSE WT
    mais lorsque je veux lancer mon client j'obtiens cette erreur:

    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
    at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:284)
    at javax.naming.InitialContext.lookup(InitialContext.java:351)
    at com.et.GestionDeStockClient.main(GestionDeStockClient.java:15)


    Est ce que quelqu'un pourrait m'aiguiller je suis debutant en la matière...
    L'habitude est l'illusion d'un acquis imaginaire...

    Mes Compos Ziks Electros:http://fishbone2k.free.fr/technorulez/news.php?id=89

  2. #2
    Membre actif Avatar de kore62
    Profil pro
    Inscrit en
    Août 2007
    Messages
    222
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France

    Informations forums :
    Inscription : Août 2007
    Messages : 222
    Points : 205
    Points
    205
    Par défaut
    D'apres le debugger ca proviendrait de cette ligne de code:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     Context context = new InitialContext();
             GestionDeStock stock = (GestionDeStock) context.lookup("GestionDeStockBean/remote");
    Le fichier java de mon Client est le suivant:
    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
     
    package com.et;
     
    import java.util.Iterator;
    import java.util.List;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
     
     
    public class GestionDeStockClient {
     
       public static void main(String[] args) {
          try {
             Context context = new InitialContext();
             GestionDeStock stock = (GestionDeStock) context.lookup("GestionDeStockBean/remote");
     
             // Ne pas faire l'ajout plusieurs fois, commenter ces lignes après la première exécution.
             stock.ajouter(new Produit("001", "Tomate", 100));
             stock.ajouter(new Produit("002", "Pomme de terre", 5680));
             stock.ajouter(new Produit("003", "Orange", 23));
             stock.ajouter(new Produit("004", "Carotte", 115));
             stock.ajouter(new Produit("005", "Muscadet", 48));
     
             List<Produit> produits = stock.listerTousLesProduits();
             for (Iterator iter = produits.iterator(); iter.hasNext();) {
                Produit eachProduit = (Produit) iter.next();
                System.out.println(eachProduit);
             }
     
          } catch (NamingException e) {
             e.printStackTrace();
          }
       }
    }
    C'est le tutoriel EclipseWTp_EJb3.0_JBoss sur eclipse total:
    http://www.eclipsetotale.com/article...lipse.html#A23
    L'habitude est l'illusion d'un acquis imaginaire...

    Mes Compos Ziks Electros:http://fishbone2k.free.fr/technorulez/news.php?id=89

  3. #3
    Membre actif Avatar de kore62
    Profil pro
    Inscrit en
    Août 2007
    Messages
    222
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France

    Informations forums :
    Inscription : Août 2007
    Messages : 222
    Points : 205
    Points
    205
    Par défaut
    Bon c'est bon j'ai résolu le problème...
    C'était mon fichier Client qui n'était pas placé au bon endroit... Merci pour ceux qui ont tenté ou ceux qui serait entrain de chercher..
    L'habitude est l'illusion d'un acquis imaginaire...

    Mes Compos Ziks Electros:http://fishbone2k.free.fr/technorulez/news.php?id=89

  4. #4
    Membre régulier
    Inscrit en
    Avril 2006
    Messages
    268
    Détails du profil
    Informations forums :
    Inscription : Avril 2006
    Messages : 268
    Points : 101
    Points
    101
    Par défaut
    Bonjour,

    j'ai le même soucis, où faut-il placer le fichier client stp ?

    Merci

  5. #5
    Membre régulier
    Inscrit en
    Avril 2006
    Messages
    268
    Détails du profil
    Informations forums :
    Inscription : Avril 2006
    Messages : 268
    Points : 101
    Points
    101
    Par défaut
    C'est bon en fait il faut juste mettre le fichier client avec le fichier de propriétés

  6. #6
    Membre habitué Avatar de khallou2007
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    111
    Détails du profil
    Informations personnelles :
    Âge : 37
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Mars 2008
    Messages : 111
    Points : 153
    Points
    153
    Par défaut
    bonjour,
    j'ai la meme erreur
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file:  java.naming.factory.initial
    	at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:645)
    	at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:288)
    	at javax.naming.InitialContext.getURLOrDefaultInitCtx(InitialContext.java:325)
    	at javax.naming.InitialContext.lookup(InitialContext.java:392)
    	at khaled.ClientS.main(ClientS.java:14)
    voila mon fichier properties
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
    java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
    java.naming.provider.url=127.0.0.1:1099
    j'ai trouvé qu'il me faut ajouter des jar comme
    * appserv-ext.jar
    * appserv-admin.jar
    * appserv-deployment-client.jar

    mais si comme vous dites, juste un simple changement de fichier, ca sera plus facile, mais j'ai pas compris comment ?? j'ai mis le fichier jndi.properties avec ma classe client mais meme erreur!!
    Il est bon d'avoir à soi quelque chose pour le donner.

  7. #7
    Membre habitué Avatar de khallou2007
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    111
    Détails du profil
    Informations personnelles :
    Âge : 37
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Mars 2008
    Messages : 111
    Points : 153
    Points
    153
    Par défaut
    j'ai essayé d'ajouter les propriétes dans mon code:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
     Properties properties = new Properties();
    		   properties.put("java.naming.factory.initial", "org.jnp.interfaces.NamingContextFactory");
    		   properties.put("java.naming.factory.url.pkgs", "org.jboss.naming:org.jnp.interfaces");
    		   properties.put("java.naming.provider.url", "127.0.0.1:1099");
     
    		   Context cont = new InitialContext(properties);
    et j'ai supprimé le fichier jndi.properties alors j'ai l'erreur system suivanye:
    Microsoft Windows:
    Java(TM) Platform SE binary a cessé de fonctionné

    Un problème a fait que le programme a cessé de fonctionner correctement. Windows va fermerce prog....


    NB: j'utilise Eclipse galileo et Jboss 5
    Il est bon d'avoir à soi quelque chose pour le donner.

  8. #8
    Membre habitué Avatar de khallou2007
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    111
    Détails du profil
    Informations personnelles :
    Âge : 37
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Mars 2008
    Messages : 111
    Points : 153
    Points
    153
    Par défaut
    mon jdk est à jours,
    j'ai changé un peut la stratégie j'ai fait une classe qui contient les propriétés
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    import java.util.Properties;
    import javax.naming.*;
     
    public class JBossContext {
    	public static Context getInitialContext() throws NamingException{
    		Properties prop=new Properties();
    		prop.put(Context.INITIAL_CONTEXT_FACTORY,"org.jnp.interfaces.NamingContextFactory");
    		prop.put(Context.URL_PKG_PREFIXES,"org.jboss.naming:org.jnp.interfaces");
    		prop.put(Context.PROVIDER_URL,"jnp://localhost:1099");
    		return new InitialContext(prop);
    		}
    }
    et mon client appel cette classe
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    Context cont=JBossContext.getInitialContext();
    meme erreur system java est cessé de fonctionner et dans la console m'affiche cette erreur:
    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
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    #
    # A fatal error has been detected by the Java Runtime Environment:
    #
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d8b29de, pid=656, tid=968
    #
    # JRE version: 6.0_16-b01
    # Java VM: Java HotSpot(TM) Client VM (14.2-b01 mixed mode, sharing windows-x86 )
    # Problematic frame:
    # 
    [error occurred during error reporting (printing problematic frame), id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
     
    [error occurred during error reporting , id 0xc0000005]
     
    [Too many errors, abort]
    [Too many errors, abort]
    Il est bon d'avoir à soi quelque chose pour le donner.

  9. #9
    Membre habitué Avatar de khallou2007
    Profil pro
    Inscrit en
    Mars 2008
    Messages
    111
    Détails du profil
    Informations personnelles :
    Âge : 37
    Localisation : France, Alpes Maritimes (Provence Alpes Côte d'Azur)

    Informations forums :
    Inscription : Mars 2008
    Messages : 111
    Points : 153
    Points
    153
    Par défaut
    bon, la solution que j'ai trouvé c'est formaté le PC !!! et ca marche,
    enfin je peut lancer mon client, mais après l'installation de mon antivirus ( kasperskyyyyyyy !!! ) l'erreur est revenu
    je poste le fichier log généré suite à cette erreur:
    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
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    #
    # A fatal error has been detected by the Java Runtime Environment:
    #
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d8b29de, pid=1408, tid=5712
    #
    # JRE version: 6.0_17-b04
    # Java VM: Java HotSpot(TM) Client VM (14.3-b01 mixed mode, sharing windows-x86 )
    # Problematic frame:
    # V  [jvm.dll+0xb29de]
    #
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    #
     
    ---------------  T H R E A D  ---------------
     
    Current thread (0x01ac6400):  VMThread [stack: 0x01690000,0x016e0000] [id=5712]
     
    siginfo: ExceptionCode=0xc0000005, reading address 0x6ed85906
     
    Registers:
    EAX=0x00000000, EBX=0x00000000, ECX=0x6ed85902, EDX=0x025e25c0
    ESP=0x016dfd58, EBP=0x016dfd60, ESI=0x016dfd70, EDI=0x016dfda0
    EIP=0x6d8b29de, EFLAGS=0x00010246
     
    Top of Stack: (sp=0x016dfd58)
    0x016dfd58:   00000000 01aa1c00 016dfe68 6d9ce26d
    0x016dfd68:   016dfd70 016dfda0 0053005b 55cec9df
    0x016dfd78:   00000000 00000000 6ed85902 0053005b
    0x016dfd88:   0053005b 55cec9df 00000000 00000000
    0x016dfd98:   6ed85902 0053005b 28100000 776d5620
    0x016dfda8:   77349884 0267bd5f 0267bc04 0267bcb0
    0x016dfdb8:   0267bd5e 6d9f2518 016dfe20 6d9921a9
    0x016dfdc8:   0267bd5e 6d9f2518 6d886763 01ac6720 
     
    Instructions: (pc=0x6d8b29de)
    0x6d8b29ce:   e8 dd fe ff ff 5f 8b c6 5e 5d c2 08 00 8b 49 10
    0x6d8b29de:   8b 51 04 8b 01 52 83 c1 08 50 51 8b ce e8 f0 70 
     
     
    Stack: [0x01690000,0x016e0000],  sp=0x016dfd58,  free space=319k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    V  [jvm.dll+0xb29de]
    V  [jvm.dll+0x1ce26d]
    V  [jvm.dll+0x1ce587]
    V  [jvm.dll+0x1e8722]
    V  [jvm.dll+0x1e8ca2]
    V  [jvm.dll+0x173e4c]
    C  [msvcr71.dll+0x9565]
    C  [kernel32.dll+0x4d0e9]
    C  [ntdll.dll+0x419bb]
    C  [ntdll.dll+0x4198e]
     
     
    ---------------  P R O C E S S  ---------------
     
    Java Threads: ( => current thread )
      0x01b10400 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3572, stack(0x02340000,0x02390000)]
      0x01b22c00 JavaThread "CompilerThread0" daemon [_thread_blocked, id=1508, stack(0x022f0000,0x02340000)]
      0x01b0fc00 JavaThread "Attach Listener" daemon [_thread_blocked, id=1248, stack(0x022a0000,0x022f0000)]
      0x01b0f400 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=4376, stack(0x02250000,0x022a0000)]
      0x01ac9000 JavaThread "Finalizer" daemon [_thread_blocked, id=5680, stack(0x02200000,0x02250000)]
      0x01ac7c00 JavaThread "Reference Handler" daemon [_thread_blocked, id=4920, stack(0x01b90000,0x01be0000)]
      0x01aa1c00 JavaThread "main" [_thread_in_native, id=3084, stack(0x00360000,0x003b0000)]
     
    Other Threads:
    =>0x01ac6400 VMThread [stack: 0x01690000,0x016e0000] [id=5712]
      0x01b30000 WatcherThread [stack: 0x023e0000,0x02430000] [id=5852]
     
    VM state:at safepoint (normal execution)
     
    VM Mutex/Monitor currently owned by a thread:  ([mutex/lock_event])
    [0x025dd7e0] Safepoint_lock - owner thread: 0x01ac6400
    [0x025dd848] Threads_lock - owner thread: 0x01ac6400
     
    Heap
     def new generation   total 960K, used 909K [0x28020000, 0x28120000, 0x28500000)
      eden space 896K,  98% used [0x28020000, 0x280fdb40, 0x28100000)
      from space 64K,  34% used [0x28100000, 0x281058c0, 0x28110000)
      to   space 64K,   0% used [0x28110000, 0x28110000, 0x28120000)
     tenured generation   total 4096K, used 551K [0x28500000, 0x28900000, 0x2c020000)
       the space 4096K,  13% used [0x28500000, 0x28589fa8, 0x2858a000, 0x28900000)
     compacting perm gen  total 12288K, used 494K [0x2c020000, 0x2cc20000, 0x30020000)
       the space 12288K,   4% used [0x2c020000, 0x2c09ba20, 0x2c09bc00, 0x2cc20000)
        ro space 8192K,  63% used [0x30020000, 0x30538b20, 0x30538c00, 0x30820000)
        rw space 12288K,  53% used [0x30820000, 0x30e95138, 0x30e95200, 0x31420000)
     
    Dynamic libraries:
    0x00400000 - 0x00424000 	C:\Program Files\Java\jre6\bin\javaw.exe
    0x77670000 - 0x77797000 	C:\Windows\system32\ntdll.dll
    0x77300000 - 0x773dc000 	C:\Windows\system32\kernel32.dll
    0x760c0000 - 0x76186000 	C:\Windows\system32\ADVAPI32.dll
    0x76280000 - 0x76343000 	C:\Windows\system32\RPCRT4.dll
    0x761e0000 - 0x7627d000 	C:\Windows\system32\USER32.dll
    0x76190000 - 0x761db000 	C:\Windows\system32\GDI32.dll
    0x75d20000 - 0x75d3e000 	C:\Windows\system32\IMM32.DLL
    0x75eb0000 - 0x75f78000 	C:\Windows\system32\MSCTF.dll
    0x763b0000 - 0x7645a000 	C:\Windows\system32\msvcrt.dll
    0x77410000 - 0x77419000 	C:\Windows\system32\LPK.DLL
    0x777a0000 - 0x7781d000 	C:\Windows\system32\USP10.dll
    0x10000000 - 0x10011000 	C:\PROGRA~1\KASPER~1\KASPER~1.0\r3hook.dll
    0x75c80000 - 0x75c87000 	C:\Windows\system32\PSAPI.DLL
    0x76350000 - 0x763a9000 	C:\Windows\system32\SHLWAPI.dll
    0x757b0000 - 0x7594e000 	C:\Windows\WinSxS\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.6002.18005_none_5cb72f96088b0de0\comctl32.dll
    0x7c340000 - 0x7c396000 	C:\Program Files\Java\jre6\bin\msvcr71.dll
    0x6d800000 - 0x6da8b000 	C:\Program Files\Java\jre6\bin\client\jvm.dll
    0x73b00000 - 0x73b32000 	C:\Windows\system32\WINMM.dll
    0x764b0000 - 0x765f5000 	C:\Windows\system32\ole32.dll
    0x77450000 - 0x774dd000 	C:\Windows\system32\OLEAUT32.dll
    0x73ac0000 - 0x73afd000 	C:\Windows\system32\OLEACC.dll
    0x75b80000 - 0x75bac000 	C:\Windows\system32\apphelp.dll
    0x6d7b0000 - 0x6d7bc000 	C:\Program Files\Java\jre6\bin\verify.dll
    0x6d330000 - 0x6d34f000 	C:\Program Files\Java\jre6\bin\java.dll
    0x6d290000 - 0x6d298000 	C:\Program Files\Java\jre6\bin\hpi.dll
    0x6d7f0000 - 0x6d7ff000 	C:\Program Files\Java\jre6\bin\zip.dll
    0x6d610000 - 0x6d623000 	C:\Program Files\Java\jre6\bin\net.dll
    0x773e0000 - 0x7740d000 	C:\Windows\system32\WS2_32.dll
    0x77830000 - 0x77836000 	C:\Windows\system32\NSI.dll
    0x75210000 - 0x7524b000 	C:\Windows\system32\mswsock.dll
    0x75200000 - 0x75205000 	C:\Windows\System32\wship6.dll
    0x74d50000 - 0x74d55000 	C:\Windows\System32\wshtcpip.dll
    0x74b60000 - 0x74b6f000 	C:\Windows\system32\NLAapi.dll
    0x75420000 - 0x75439000 	C:\Windows\system32\IPHLPAPI.DLL
    0x753e0000 - 0x75415000 	C:\Windows\system32\dhcpcsvc.DLL
    0x756e0000 - 0x7570c000 	C:\Windows\system32\DNSAPI.dll
    0x75bb0000 - 0x75bc4000 	C:\Windows\system32\Secur32.dll
    0x75950000 - 0x75957000 	C:\Windows\system32\WINNSI.DLL
    0x753b0000 - 0x753d2000 	C:\Windows\system32\dhcpcsvc6.DLL
    0x01be0000 - 0x01bf8000 	C:\Program Files\Kaspersky Lab\Kaspersky Internet Security 7.0\dnsq.dll
    0x71030000 - 0x7103f000 	C:\Windows\system32\napinsp.dll
    0x70d20000 - 0x70d32000 	C:\Windows\system32\pnrpnsp.dll
    0x16080000 - 0x160a5000 	C:\Program Files\Bonjour\mdnsNSP.dll
    0x70960000 - 0x7096c000 	C:\Windows\system32\wshbth.dll
    0x774e0000 - 0x7766a000 	C:\Windows\system32\SETUPAPI.dll
    0x70950000 - 0x70958000 	C:\Windows\System32\winrnr.dll
    0x76460000 - 0x764a9000 	C:\Windows\system32\WLDAP32.dll
     
    VM Arguments:
    jvm_args: -Dfile.encoding=Cp1252 
    java_command: khaled.Client
    Launcher Type: SUN_STANDARD
     
    Environment Variables:
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0_10
    CLASSPATH=.;C:\Program Files\Java\jre6\lib\ext\QTJava.zip
    PATH=C:/Program Files/Java/jre6/bin/client;C:/Program Files/Java/jre6/bin;C:\Program Files\Common Files\Microsoft Shared\Windows Live;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Program Files\Common Files\Roxio Shared\DLLShared\;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Common Files\Microsoft Shared\Windows Live
    USERNAME=khaled
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 6, GenuineIntel
     
     
     
    ---------------  S Y S T E M  ---------------
     
    OS: Windows Vista Build 6002 Service Pack 2
     
    CPU:total 2 (2 cores per cpu, 1 threads per core) family 6 model 23 stepping 6, cmov, cx8, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1
     
    Memory: 4k page, physical 2097151k(1074684k free), swap 4194303k(4132696k free)
     
    vm_info: Java HotSpot(TM) Client VM (14.3-b01) for windows-x86 JRE (1.6.0_17-b04), built on Oct 11 2009 00:52:06 by "java_re" with MS VC++ 7.1
     
    time: Sun Dec 06 00:19:01 2009
    elapsed time: 3 seconds
    la seul possibilité pour faire fonctionner mon ejb est désinstallé kaspersky, j'ai essayé de le desactiver mais ca marche pas!!
    une idée plz!!
    Il est bon d'avoir à soi quelque chose pour le donner.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Des erreurs lors de démarrage de JBoss sous Eclipse
    Par imilys dans le forum Wildfly/JBoss
    Réponses: 1
    Dernier message: 17/05/2011, 14h51
  2. EJB3 avec JBoss 6
    Par Hello_World dans le forum Wildfly/JBoss
    Réponses: 2
    Dernier message: 07/09/2010, 12h26
  3. premier ejb3 avec jboss
    Par mustainfo dans le forum Wildfly/JBoss
    Réponses: 10
    Dernier message: 25/02/2010, 11h45
  4. deployer un projet java avec ejb3 et jboss sous eclipse
    Par flamant dans le forum Eclipse Java
    Réponses: 2
    Dernier message: 17/02/2009, 08h48
  5. Réponses: 4
    Dernier message: 11/04/2008, 16h29

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