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

JSF Java Discussion :

configuration taglib richefaces


Sujet :

JSF Java

  1. #1
    Membre éclairé
    Inscrit en
    Mars 2006
    Messages
    227
    Détails du profil
    Informations forums :
    Inscription : Mars 2006
    Messages : 227
    Par défaut configuration taglib richefaces
    J'utilise une application JSF, avec l'implémentation standard de SUN, je souhaiterai utiliser la Taglib de Richfaces, qu'elle configuration minimum dois-je utiliser? j'ai suivi le tutorial de jboss sur la config j'ai ce message d'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
     
    GRAVE: Exception while loading the app
    java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! com.sun.facelets.tag.jsf.ComponentHandler
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:117)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)

  2. #2
    Rédacteur

    Profil pro
    Inscrit en
    Juin 2003
    Messages
    4 184
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2003
    Messages : 4 184
    Par défaut
    Si c'est une erreur au démarrage, donne nous le code de ton web.xml, et si c'est à l'exécution de la page, le code de la page en question.

  3. #3
    Membre éclairé
    Inscrit en
    Mars 2006
    Messages
    227
    Détails du profil
    Informations forums :
    Inscription : Mars 2006
    Messages : 227
    Par défaut
    Voici la web.xml et le message d'erreur

    le web.xml
    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
     
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
     
        <context-param>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>server</param-value>
        </context-param>
        <context-param>
            <param-name>org.richfaces.SKIN</param-name>
            <param-value>blueSky</param-value>
        </context-param>
        <context-param>
            <param-name>org.richfaces.CONTROL_SKINNING</param-name>
            <param-value>enable</param-value>
        </context-param>
        <filter>
            <display-name>RichFaces Filter</display-name>
            <filter-name>richfaces</filter-name>
            <filter-class>org.ajax4jsf.Filter</filter-class>
        </filter>
        <filter-mapping>
            <filter-name>richfaces</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            <dispatcher>REQUEST</dispatcher>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>INCLUDE</dispatcher>
        </filter-mapping>
        <listener>
            <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
        </listener>
     
        <context-param>
            <param-name>javax.faces.PROJECT_STAGE</param-name>
            <param-value>Development</param-value>
        </context-param>
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>/faces/*</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
            <welcome-file>faces/index.xhtml</welcome-file>
        </welcome-file-list>
    </web-app>
    Message d'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
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    13 janv. 2010 20:18:20 com.sun.enterprise.glassfish.bootstrap.ASMain main
    INFO: Launching GlassFish on Felix platform
    Welcome to Felix
    ================
    INFO: Perform lazy SSL initialization for the listener 'http-listener-2'
    INFO: Starting Grizzly Framework 1.9.18-k - Wed Jan 13 20:18:31 CET 2010
    INFO: Starting Grizzly Framework 1.9.18-k - Wed Jan 13 20:18:31 CET 2010
    INFO: Grizzly Framework 1.9.18-k started in: 61ms listening on port 46537
    INFO: Grizzly Framework 1.9.18-k started in: 201ms listening on port 46541
    INFO: Grizzly Framework 1.9.18-k started in: 160ms listening on port 46542
    INFO: Grizzly Framework 1.9.18-k started in: 108ms listening on port 46498
    INFO: Grizzly Framework 1.9.18-k started in: 143ms listening on port 46509
    INFO: The Admin Console is already installed, but not yet loaded.
    INFO: GlassFish v3 (74.2) startup time : Felix(9491ms) startup services(2434ms) total(11925ms)
    INFO: Hibernate Validator bean-validator-3.0-JBoss-4.0.2
    INFO: Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
    INFO: Grizzly Framework 1.9.18-k started in: 12ms listening on port 46541
    INFO: javassist.util.proxy.ProxyFactory.classLoaderProvider = org.glassfish.weld.WeldActivator$GlassFishClassLoaderProvider@76a2f910
    INFO: Perform lazy SSL initialization for the listener 'http-listener-2'
    INFO: Grizzly Framework 1.9.18-k started in: 16ms listening on port 46542
    INFO: Binding RMI port to *:46547
    INFO: JMXStartupService: Started JMXConnector, JMXService URL = service:jmx:rmi://192.168.0.188:46547/jndi/rmi://192.168.0.188:46547/jmxrmi
    INFO: Using com.sun.enterprise.transaction.jts.JavaEETransactionManagerJTSDelegate as the delegate
    INFO: [Thread[GlassFish Kernel Main Thread,5,main]] started
    INFO: {felix.fileinstall.poll (ms) = 5000, felix.fileinstall.dir = /Applications/NetBeans/sges-v3/glassfish/domains/localhost/autodeploy/bundles, felix.fileinstall.debug = 1, felix.fileinstall.bundles.new.start = true, felix.fileinstall.tmpdir = /var/folders/VE/VEqby3bxGHWFwO8jfgTuT++++TI/-Tmp-/fileinstall--5910574778241932206, felix.fileinstall.filter = null}
    INFO: {felix.fileinstall.poll (ms) = 5000, felix.fileinstall.dir = /Applications/NetBeans/sges-v3/glassfish/modules/autostart, felix.fileinstall.debug = 1, felix.fileinstall.bundles.new.start = true, felix.fileinstall.tmpdir = /var/folders/VE/VEqby3bxGHWFwO8jfgTuT++++TI/-Tmp-/fileinstall-7540626292413964628, felix.fileinstall.filter = null}
    INFO: Started bundle: file:/Applications/NetBeans/sges-v3/glassfish/modules/autostart/osgi-web-container.jar
    INFO: SEC1002: Security Manager is OFF.
    GRAVE: SEC5054: Certificate has expired: [
    [
      Version: V1
      Subject: OU=Secure Server Certification Authority, O="RSA Data Security, Inc.", C=US
      Signature Algorithm: MD2withRSA, OID = 1.2.840.113549.1.1.2
      Key:  Sun RSA public key, 1000 bits
      modulus: 6144706769222379850430183405655235862870193813433361902309516534729547168229223442088128897090426025874990958624426272027915771330043379079076269082776443120496525109458437435793974957144923190172655546279112796066635455545786300647745888353781002359412766112775410851780140804282673804950495744761467
      public exponent: 65537
      Validity: [From: Wed Nov 09 01:00:00 CET 1994,
                   To: Fri Jan 08 00:59:59 CET 2010]
      Issuer: OU=Secure Server Certification Authority, O="RSA Data Security, Inc.", C=US
      SerialNumber: [    02ad667e 4e45fe5e 576f3c98 195eddc0]
    ]
      Algorithm: [MD2withRSA]
      Signature:
    0000: 65 DD 7E E1 B2 EC B0 E2   3A E0 EC 71 46 9A 19 11  e.......:..qF...
    0010: B8 D3 C7 A0 B4 03 40 26   02 3E 09 9C E1 12 B3 D1  ......@&.>......
    0020: 5A F6 37 A5 B7 61 03 B6   5B 16 69 3B C6 44 08 0C  Z.7..a..[.i;.D..
    0030: 88 53 0C 6B 97 49 C7 3E   35 DC 6C B9 BB AA DF 5C  .S.k.I.>5.l....\
    0040: BB 3A 2F 93 60 B6 A9 4B   4D F2 20 F7 CD 5F 7F 64  .:/.`..KM. .._.d
    0050: 7B 8E DC 00 5C D7 FA 77   CA 39 16 59 6F 0E EA D3  ....\..w.9.Yo...
    0060: B5 83 7F 4D 4D 42 56 76   B4 C9 5F 04 F8 38 F8 EB  ...MMBVv.._..8..
    0070: D2 5F 75 5F CD 7B FC E5   8E 80 7C FC 50           ._u_........P
    ]
    INFO: Security startup service called
    INFO: SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.
    INFO: Realm admin-realm of classtype com.sun.enterprise.security.auth.realm.file.FileRealm successfully created.
    INFO: Realm file of classtype com.sun.enterprise.security.auth.realm.file.FileRealm successfully created.
    INFO: Realm certificate of classtype com.sun.enterprise.security.auth.realm.certificate.CertificateRealm successfully created.
    INFO: Security service(s) started successfully....
    INFO: Created HTTP listener http-listener-1 on port 46541
    INFO: Created HTTP listener http-listener-2 on port 46542
    INFO: Created HTTP listener admin-listener on port 46509
    INFO: Created virtual server server
    INFO: Created virtual server __asadmin
    INFO: Virtual server server loaded system default web module
    INFO: Updating configuration from org.apache.felix.fileinstall-autodeploy-bundles.cfg
    INFO: Installed /Applications/NetBeans/sges-v3/glassfish/modules/autostart/org.apache.felix.fileinstall-autodeploy-bundles.cfg
    INFO: {felix.fileinstall.poll (ms) = 5000, felix.fileinstall.dir = /Applications/NetBeans/sges-v3/glassfish/domains/localhost/autodeploy/bundles, felix.fileinstall.debug = 1, felix.fileinstall.bundles.new.start = true, felix.fileinstall.tmpdir = /var/folders/VE/VEqby3bxGHWFwO8jfgTuT++++TI/-Tmp-/fileinstall--4121868009713966940, felix.fileinstall.filter = null}
    INFO: Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
    INFO: Hibernate Annotations 3.3.1.GA
    INFO: Hibernate 3.2.5
    INFO: hibernate.properties not found
    INFO: Bytecode provider name : cglib
    INFO: using JDK 1.4 java.sql.Timestamp handling
    INFO: Hibernate EntityManager 3.3.2.GA
    INFO: Processing PersistenceUnitInfo [
            name: netescapewebPU
            ...]
    INFO: Binding entity from annotated class: com.netescape.domain.Client
    INFO: Bind entity com.netescape.domain.Client on table Client
    INFO: Binding entity from annotated class: com.netescape.domain.Societe
    INFO: Bind entity com.netescape.domain.Societe on table Societe
    INFO: Binding entity from annotated class: com.netescape.domain.Composant
    INFO: Bind entity com.netescape.domain.Composant on table Composant
    INFO: Binding entity from annotated class: com.netescape.domain.Activite
    INFO: Bind entity com.netescape.domain.Activite on table Activite
    INFO: Binding entity from annotated class: com.netescape.domain.Personne
    INFO: Bind entity com.netescape.domain.Personne on table Personne
    INFO: Binding entity from annotated class: com.netescape.domain.Contact
    INFO: Bind entity com.netescape.domain.Contact on table Contact
    INFO: Binding entity from annotated class: com.netescape.domain.Utilisateur
    INFO: Bind entity com.netescape.domain.Utilisateur on table Utilisateur
    INFO: Binding entity from annotated class: com.netescape.domain.Option
    INFO: Bind entity com.netescape.domain.Option on table Option
    INFO: Binding entity from annotated class: com.netescape.domain.Adresse
    INFO: Bind entity com.netescape.domain.Adresse on table Adresse
    INFO: Binding entity from annotated class: com.netescape.domain.Evaluation
    INFO: Bind entity com.netescape.domain.Evaluation on table Evaluation
    INFO: Binding entity from annotated class: com.netescape.domain.Service
    INFO: Bind entity com.netescape.domain.Service on table Service
    INFO: Binding entity from annotated class: com.netescape.domain.Condition
    INFO: Bind entity com.netescape.domain.Condition on table Condition
    INFO: Binding entity from annotated class: com.netescape.domain.Ressource
    INFO: Bind entity com.netescape.domain.Ressource on table Ressource
    INFO: Binding entity from annotated class: com.netescape.domain.Lieu
    INFO: Bind entity com.netescape.domain.Lieu on table Lieu
    INFO: Binding entity from annotated class: com.netescape.domain.Profil
    INFO: Bind entity com.netescape.domain.Profil on table Profil
    INFO: Binding entity from annotated class: com.netescape.domain.Motif
    INFO: Bind entity com.netescape.domain.Motif on table Motif
    INFO: Binding entity from annotated class: com.netescape.domain.Offre
    INFO: Bind entity com.netescape.domain.Offre on table Offre
    INFO: Binding entity from annotated class: com.netescape.domain.Ville
    INFO: Bind entity com.netescape.domain.Ville on table Ville
    INFO: Binding entity from annotated class: com.netescape.domain.Materiel
    INFO: Bind entity com.netescape.domain.Materiel on table Materiel
    INFO: Mapping collection: com.netescape.domain.Client.commandes -> Offre
    INFO: Mapping collection: com.netescape.domain.Client.contacts -> Contact
    INFO: Mapping collection: com.netescape.domain.Client.evaluations -> Evaluation
    INFO: Mapping collection: com.netescape.domain.Activite.evaluations -> Evaluation
    INFO: Mapping collection: com.netescape.domain.Activite.offres -> Offre
    INFO: Mapping collection: com.netescape.domain.Utilisateur.envois -> Offre
    INFO: Mapping collection: com.netescape.domain.Utilisateur.realises -> Offre
    INFO: Mapping collection: com.netescape.domain.Utilisateur.valides -> Offre
    INFO: Mapping collection: com.netescape.domain.Profil.utilisateurs -> Utilisateur
    INFO: Hibernate Validator not found: ignoring
    INFO: Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
    INFO: Using provided datasource
    INFO: RDBMS: PostgreSQL, version: 8.4.2
    INFO: JDBC driver: PostgreSQL Native Driver, version: PostgreSQL 8.3 JDBC3 with SSL (build 603)
    INFO: Using dialect: org.hibernate.dialect.PostgreSQLDialect
    INFO: Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
    INFO: instantiating TransactionManagerLookup: org.hibernate.transaction.SunONETransactionManagerLookup
    INFO: instantiated TransactionManagerLookup
    INFO: Automatic flush during beforeCompletion(): disabled
    INFO: Automatic session close at end of transaction: disabled
    INFO: JDBC batch size: 15
    INFO: JDBC batch updates for versioned data: disabled
    INFO: Scrollable result sets: enabled
    INFO: JDBC3 getGeneratedKeys(): disabled
    INFO: Connection release mode: auto
    INFO: Default batch fetch size: 1
    INFO: Generate SQL with comments: disabled
    INFO: Order SQL updates by primary key: disabled
    INFO: Order SQL inserts for batching: disabled
    INFO: Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
    INFO: Using ASTQueryTranslatorFactory
    INFO: Query language substitutions: {}
    INFO: JPA-QL strict compliance: enabled
    INFO: Second-level cache: enabled
    INFO: Query cache: disabled
    INFO: Cache provider: org.hibernate.cache.NoCacheProvider
    INFO: Optimize cache for minimal puts: disabled
    INFO: Structured second-level cache entries: disabled
    INFO: Statistics: disabled
    INFO: Deleted entity synthetic identifier rollback: disabled
    INFO: Default entity-mode: pojo
    INFO: Named query checking : enabled
    INFO: building session factory
    INFO: Not binding factory to JNDI, no JNDI name configured
    INFO: Running hbm2ddl schema export
    INFO: exporting generated schema to database
    INFO: schema export complete
    INFO: JNDI InitialContext properties:{}
    INFO: Portable JNDI names for EJB EvaluationFacade : [java:global/netescapeweb/EvaluationFacade!com.netescape.jpa.EvaluationFacade, java:global/netescapeweb/EvaluationFacade]
    INFO: Portable JNDI names for EJB OptionFacade : [java:global/netescapeweb/OptionFacade, java:global/netescapeweb/OptionFacade!com.netescape.jpa.OptionFacade]
    INFO: Portable JNDI names for EJB ActiviteFacade : [java:global/netescapeweb/ActiviteFacade, java:global/netescapeweb/ActiviteFacade!com.netescape.jpa.ActiviteFacade]
    INFO: Portable JNDI names for EJB MotifFacade : [java:global/netescapeweb/MotifFacade!com.netescape.jpa.MotifFacade, java:global/netescapeweb/MotifFacade]
    INFO: Portable JNDI names for EJB LieuFacade : [java:global/netescapeweb/LieuFacade!com.netescape.jpa.LieuFacade, java:global/netescapeweb/LieuFacade]
    INFO: Portable JNDI names for EJB OffreFacade : [java:global/netescapeweb/OffreFacade, java:global/netescapeweb/OffreFacade!com.netescape.jpa.OffreFacade]
    INFO: Portable JNDI names for EJB RessourceFacade : [java:global/netescapeweb/RessourceFacade, java:global/netescapeweb/RessourceFacade!com.netescape.jpa.RessourceFacade]
    INFO: Portable JNDI names for EJB ClientFacade : [java:global/netescapeweb/ClientFacade!com.netescape.jpa.ClientFacade, java:global/netescapeweb/ClientFacade]
    INFO: Portable JNDI names for EJB UtilisateurFacade : [java:global/netescapeweb/UtilisateurFacade, java:global/netescapeweb/UtilisateurFacade!com.netescape.jpa.UtilisateurFacade]
    INFO: Portable JNDI names for EJB AdresseFacade : [java:global/netescapeweb/AdresseFacade, java:global/netescapeweb/AdresseFacade!com.netescape.jpa.AdresseFacade]
    INFO: Portable JNDI names for EJB ProfilFacade : [java:global/netescapeweb/ProfilFacade, java:global/netescapeweb/ProfilFacade!com.netescape.jpa.ProfilFacade]
    INFO: Portable JNDI names for EJB PersonneFacade : [java:global/netescapeweb/PersonneFacade!com.netescape.jpa.PersonneFacade, java:global/netescapeweb/PersonneFacade]
    INFO: Portable JNDI names for EJB SocieteFacade : [java:global/netescapeweb/SocieteFacade, java:global/netescapeweb/SocieteFacade!com.netescape.jpa.SocieteFacade]
    INFO: Portable JNDI names for EJB MaterielFacade : [java:global/netescapeweb/MaterielFacade!com.netescape.jpa.MaterielFacade, java:global/netescapeweb/MaterielFacade]
    INFO: Portable JNDI names for EJB ServiceFacade : [java:global/netescapeweb/ServiceFacade!com.netescape.jpa.ServiceFacade, java:global/netescapeweb/ServiceFacade]
    INFO: Portable JNDI names for EJB ConditionFacade : [java:global/netescapeweb/ConditionFacade, java:global/netescapeweb/ConditionFacade!com.netescape.jpa.ConditionFacade]
    INFO: Portable JNDI names for EJB ContactFacade : [java:global/netescapeweb/ContactFacade!com.netescape.jpa.ContactFacade, java:global/netescapeweb/ContactFacade]
    INFO: Portable JNDI names for EJB ComposantFacade : [java:global/netescapeweb/ComposantFacade!com.netescape.jpa.ComposantFacade, java:global/netescapeweb/ComposantFacade]
    INFO: Portable JNDI names for EJB VilleFacade : [java:global/netescapeweb/VilleFacade!com.netescape.jpa.VilleFacade, java:global/netescapeweb/VilleFacade]
    INFO: Initialisation de Mojarra 2.0.2 (FCS b10) pour le contexte '/netescapeweb'
    INFO: Unsanitized stacktrace from failed start...
    java.lang.RuntimeException: WEB9033: Unable to load class with name [org.ajax4jsf.taglib.html.facelets.ActionParamHandler], reason: java.lang.NoClassDefFoundError: com/sun/facelets/tag/jsf/ComponentHandler
            at org.glassfish.web.loader.WebappClassLoader.findClass(WebappClassLoader.java:944)
            at org.glassfish.web.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1420)
            at com.sun.faces.util.Util.loadClass(Util.java:203)
            at com.sun.faces.config.processor.AbstractConfigProcessor.loadClass(AbstractConfigProcessor.java:313)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processComponent(FaceletTaglibConfigProcessor.java:568)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processTags(FaceletTaglibConfigProcessor.java:361)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processTagLibrary(FaceletTaglibConfigProcessor.java:314)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.process(FaceletTaglibConfigProcessor.java:263)
            at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:337)
            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:223)
            at org.apache.catalina.core.StandardContext.contextListenerStart(StandardContext.java:4591)
            at com.sun.enterprise.web.WebModule.contextListenerStart(WebModule.java:535)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:5193)
            at com.sun.enterprise.web.WebModule.start(WebModule.java:499)
            at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:928)
            at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:912)
            at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:694)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1933)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1605)
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:90)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    Caused by: java.lang.NoClassDefFoundError: com/sun/facelets/tag/jsf/ComponentHandler
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:698)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at org.glassfish.web.loader.WebappClassLoader.findClass(WebappClassLoader.java:914)
            ... 50 more
    Caused by: java.lang.ClassNotFoundException: com.sun.facelets.tag.jsf.ComponentHandler
            at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at org.glassfish.web.loader.WebappClassLoader.findClass(WebappClassLoader.java:949)
            at org.glassfish.web.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1420)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:398)
            ... 54 more
    
    GRAVE: PWC1306: Startup of context /netescapeweb failed due to previous errors
    GRAVE: PWC1305: Exception during cleanup after start failed
    org.apache.catalina.LifecycleException: PWC2769: Manager has not yet been started
            at org.apache.catalina.session.StandardManager.stop(StandardManager.java:892)
            at org.apache.catalina.core.StandardContext.stop(StandardContext.java:5383)
            at com.sun.enterprise.web.WebModule.stop(WebModule.java:530)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:5211)
            at com.sun.enterprise.web.WebModule.start(WebModule.java:499)
            at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:928)
            at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:912)
            at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:694)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1933)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1605)
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:90)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    
    GRAVE: ContainerBase.addChild: start: 
    org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! com.sun.facelets.tag.jsf.ComponentHandler
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:5216)
            at com.sun.enterprise.web.WebModule.start(WebModule.java:499)
            at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:928)
            at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:912)
            at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:694)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1933)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1605)
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:90)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    Caused by: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! com.sun.facelets.tag.jsf.ComponentHandler
            at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:354)
            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:223)
            at org.apache.catalina.core.StandardContext.contextListenerStart(StandardContext.java:4591)
            at com.sun.enterprise.web.WebModule.contextListenerStart(WebModule.java:535)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:5193)
            ... 38 more
    Caused by: java.lang.ClassNotFoundException: com.sun.facelets.tag.jsf.ComponentHandler
            at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
            at org.glassfish.web.loader.WebappClassLoader.findClass(WebappClassLoader.java:949)
            at org.glassfish.web.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1420)
            at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:398)
            at java.lang.ClassLoader.defineClass1(Native Method)
            at java.lang.ClassLoader.defineClass(ClassLoader.java:698)
            at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
            at org.glassfish.web.loader.WebappClassLoader.findClass(WebappClassLoader.java:914)
            at org.glassfish.web.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1420)
            at com.sun.faces.util.Util.loadClass(Util.java:203)
            at com.sun.faces.config.processor.AbstractConfigProcessor.loadClass(AbstractConfigProcessor.java:313)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processComponent(FaceletTaglibConfigProcessor.java:568)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processTags(FaceletTaglibConfigProcessor.java:361)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processTagLibrary(FaceletTaglibConfigProcessor.java:314)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.process(FaceletTaglibConfigProcessor.java:263)
            at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:337)
            ... 42 more
    
    ATTENTION: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! com.sun.facelets.tag.jsf.ComponentHandler
    java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! com.sun.facelets.tag.jsf.ComponentHandler
            at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:932)
            at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:912)
            at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:694)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1933)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1605)
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:90)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    
    GRAVE: Exception while invoking class com.sun.enterprise.web.WebApplication start method
    java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! com.sun.facelets.tag.jsf.ComponentHandler
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:117)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    
    GRAVE: Exception while loading the app
    java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! com.sun.facelets.tag.jsf.ComponentHandler
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:117)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    
    INFO: closing
    INFO: Running hbm2ddl schema export
    INFO: exporting generated schema to database
    INFO: schema export complete
    Tous les fichiers jar ont été placés avec ça le serveur ne démarre pas. Si vous y voyez quelque chose.

  4. #4
    Rédacteur

    Profil pro
    Inscrit en
    Juin 2003
    Messages
    4 184
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2003
    Messages : 4 184
    Par défaut
    il te manque des librairies, en l'occurrence Facelets.

    java.lang.RuntimeException: WEB9033: Unable to load class with name [org.ajax4jsf.taglib.html.facelets.ActionParamHandler], reason: java.lang.NoClassDefFoundError: com/sun/facelets/tag/jsf/ComponentHandler

  5. #5
    Membre éclairé
    Inscrit en
    Mars 2006
    Messages
    227
    Détails du profil
    Informations forums :
    Inscription : Mars 2006
    Messages : 227
    Par défaut
    Je ne vois pas quelles librairies il faudrait importer. Cette application utilise déjà des facelets, le simple fait d'avoir ajouter richfaces, empêche le serveur de démarrer. Quelles librairies dois-je importer en plus?

  6. #6
    Rédacteur

    Profil pro
    Inscrit en
    Juin 2003
    Messages
    4 184
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2003
    Messages : 4 184
    Par défaut
    vérifie si Facelets est bien déployé sur le serveur.
    et tu dois ajouter dans le web.xml:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
     
    <context-param>
      <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
      <param-value>com.sun.facelets.FaceletViewHandler</param-value>
     </context-param>

  7. #7
    Membre éclairé
    Inscrit en
    Mars 2006
    Messages
    227
    Détails du profil
    Informations forums :
    Inscription : Mars 2006
    Messages : 227
    Par défaut
    Voici le contenu de mon web.xml et le message d'erreur qu'il me renvois
    quand au déploiement des facelets tout c'est bien passé jusqu'à ce que je rajoute les richfaces à mon application.

    le contenu de mon web.xml
    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
     
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
     
        <context-param>
            <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
            <param-value>server</param-value>
        </context-param>
     
        <context-param>
            <param-name>org.richfaces.SKIN</param-name>
            <param-value>blueSky</param-value>
        </context-param>
     
        <context-param>
            <param-name>org.richfaces.CONTROL_SKINNING</param-name>
            <param-value>enable</param-value>
        </context-param>
     
        <filter>
            <display-name>RichFaces Filter</display-name>
            <filter-name>richfaces</filter-name>
            <filter-class>org.ajax4jsf.Filter</filter-class>
        </filter>
     
        <filter-mapping>
            <filter-name>richfaces</filter-name>
            <servlet-name>Faces Servlet</servlet-name>
            <dispatcher>REQUEST</dispatcher>
            <dispatcher>FORWARD</dispatcher>
            <dispatcher>INCLUDE</dispatcher>
        </filter-mapping>
     
        <context-param>
            <param-name>javax.faces.PROJECT_STAGE</param-name>
            <param-value>Development</param-value>
        </context-param>
        <context-param>
            <param-name>org.ajax4jsf.VIEW_HANDLERS</param-name>
            <param-value>com.sun.facelets.FaceletViewHandler</param-value>
        </context-param>
     
        <listener>
            <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
        </listener>
     
        <servlet>
            <servlet-name>Faces Servlet</servlet-name>
            <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
            <load-on-startup>1</load-on-startup>
        </servlet>
        <servlet-mapping>
            <servlet-name>Faces Servlet</servlet-name>
            <url-pattern>/faces/*</url-pattern>
        </servlet-mapping>
        <session-config>
            <session-timeout>
                30
            </session-timeout>
        </session-config>
        <welcome-file-list>
            <welcome-file>faces/index.xhtml</welcome-file>
        </welcome-file-list>
    </web-app>
    le message d'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
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    15 janv. 2010 18:44:43 com.sun.enterprise.glassfish.bootstrap.ASMain main
    INFO: Launching GlassFish on Felix platform
    Welcome to Felix
    ================
    INFO: Perform lazy SSL initialization for the listener 'http-listener-2'
    INFO: Grizzly Framework 1.9.18-k started in: 121ms listening on port 46541
    INFO: Grizzly Framework 1.9.18-k started in: 12ms listening on port 46542
    INFO: Grizzly Framework 1.9.18-k started in: 5ms listening on port 46509
    INFO: Starting Grizzly Framework 1.9.18-k - Fri Jan 15 18:44:49 CET 2010
    INFO: Grizzly Framework 1.9.18-k started in: 11ms listening on port 46498
    INFO: Starting Grizzly Framework 1.9.18-k - Fri Jan 15 18:44:49 CET 2010
    INFO: Grizzly Framework 1.9.18-k started in: 6ms listening on port 46537
    INFO: The Admin Console is already installed, but not yet loaded.
    INFO: GlassFish v3 (74.2) startup time : Felix(5269ms) startup services(1647ms) total(6916ms)
    INFO: Hibernate Validator bean-validator-3.0-JBoss-4.0.2
    INFO: Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
    INFO: Grizzly Framework 1.9.18-k started in: 13ms listening on port 46541
    INFO: javassist.util.proxy.ProxyFactory.classLoaderProvider = org.glassfish.weld.WeldActivator$GlassFishClassLoaderProvider@52e42811
    INFO: Perform lazy SSL initialization for the listener 'http-listener-2'
    INFO: Grizzly Framework 1.9.18-k started in: 64ms listening on port 46542
    INFO: Binding RMI port to *:46547
    INFO: JMXStartupService: Started JMXConnector, JMXService URL = service:jmx:rmi://192.168.0.188:46547/jndi/rmi://192.168.0.188:46547/jmxrmi
    INFO: Using com.sun.enterprise.transaction.jts.JavaEETransactionManagerJTSDelegate as the delegate
    INFO: [Thread[GlassFish Kernel Main Thread,5,main]] started
    INFO: {felix.fileinstall.poll (ms) = 5000, felix.fileinstall.dir = /Applications/NetBeans/sges-v3/glassfish/domains/localhost/autodeploy/bundles, felix.fileinstall.debug = 1, felix.fileinstall.bundles.new.start = true, felix.fileinstall.tmpdir = /var/folders/VE/VEqby3bxGHWFwO8jfgTuT++++TI/-Tmp-/fileinstall--6952800730433923764, felix.fileinstall.filter = null}
    INFO: {felix.fileinstall.poll (ms) = 5000, felix.fileinstall.dir = /Applications/NetBeans/sges-v3/glassfish/modules/autostart, felix.fileinstall.debug = 1, felix.fileinstall.bundles.new.start = true, felix.fileinstall.tmpdir = /var/folders/VE/VEqby3bxGHWFwO8jfgTuT++++TI/-Tmp-/fileinstall-6862068444997770797, felix.fileinstall.filter = null}
    INFO: Started bundle: file:/Applications/NetBeans/sges-v3/glassfish/modules/autostart/org.apache.felix.scr.jar
    INFO: Started bundle: file:/Applications/NetBeans/sges-v3/glassfish/modules/autostart/osgi-web-container.jar
    INFO: SEC1002: Security Manager is OFF.
    GRAVE: SEC5054: Certificate has expired: [
    [
      Version: V1
      Subject: OU=Secure Server Certification Authority, O="RSA Data Security, Inc.", C=US
      Signature Algorithm: MD2withRSA, OID = 1.2.840.113549.1.1.2
      Key:  Sun RSA public key, 1000 bits
      modulus: 6144706769222379850430183405655235862870193813433361902309516534729547168229223442088128897090426025874990958624426272027915771330043379079076269082776443120496525109458437435793974957144923190172655546279112796066635455545786300647745888353781002359412766112775410851780140804282673804950495744761467
      public exponent: 65537
      Validity: [From: Wed Nov 09 01:00:00 CET 1994,
                   To: Fri Jan 08 00:59:59 CET 2010]
      Issuer: OU=Secure Server Certification Authority, O="RSA Data Security, Inc.", C=US
      SerialNumber: [    02ad667e 4e45fe5e 576f3c98 195eddc0]
    ]
      Algorithm: [MD2withRSA]
      Signature:
    0000: 65 DD 7E E1 B2 EC B0 E2   3A E0 EC 71 46 9A 19 11  e.......:..qF...
    0010: B8 D3 C7 A0 B4 03 40 26   02 3E 09 9C E1 12 B3 D1  ......@&.>......
    0020: 5A F6 37 A5 B7 61 03 B6   5B 16 69 3B C6 44 08 0C  Z.7..a..[.i;.D..
    0030: 88 53 0C 6B 97 49 C7 3E   35 DC 6C B9 BB AA DF 5C  .S.k.I.>5.l....\
    0040: BB 3A 2F 93 60 B6 A9 4B   4D F2 20 F7 CD 5F 7F 64  .:/.`..KM. .._.d
    0050: 7B 8E DC 00 5C D7 FA 77   CA 39 16 59 6F 0E EA D3  ....\..w.9.Yo...
    0060: B5 83 7F 4D 4D 42 56 76   B4 C9 5F 04 F8 38 F8 EB  ...MMBVv.._..8..
    0070: D2 5F 75 5F CD 7B FC E5   8E 80 7C FC 50           ._u_........P
    ]
    INFO: Security startup service called
    INFO: SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.
    INFO: Realm admin-realm of classtype com.sun.enterprise.security.auth.realm.file.FileRealm successfully created.
    INFO: Realm file of classtype com.sun.enterprise.security.auth.realm.file.FileRealm successfully created.
    INFO: Realm certificate of classtype com.sun.enterprise.security.auth.realm.certificate.CertificateRealm successfully created.
    INFO: Security service(s) started successfully....
    INFO: Created HTTP listener http-listener-1 on port 46541
    INFO: Created HTTP listener http-listener-2 on port 46542
    INFO: Created HTTP listener admin-listener on port 46509
    INFO: Created virtual server server
    INFO: Created virtual server __asadmin
    INFO: Virtual server server loaded system default web module
    INFO: Instantiated an instance of org.hibernate.validator.engine.resolver.JPATraversableResolver.
    INFO: Hibernate Annotations 3.3.1.GA
    INFO: Hibernate 3.2.5
    INFO: hibernate.properties not found
    INFO: Bytecode provider name : cglib
    INFO: using JDK 1.4 java.sql.Timestamp handling
    INFO: Updating configuration from org.apache.felix.fileinstall-autodeploy-bundles.cfg
    INFO: Installed /Applications/NetBeans/sges-v3/glassfish/modules/autostart/org.apache.felix.fileinstall-autodeploy-bundles.cfg
    INFO: {felix.fileinstall.poll (ms) = 5000, felix.fileinstall.dir = /Applications/NetBeans/sges-v3/glassfish/domains/localhost/autodeploy/bundles, felix.fileinstall.debug = 1, felix.fileinstall.bundles.new.start = true, felix.fileinstall.tmpdir = /var/folders/VE/VEqby3bxGHWFwO8jfgTuT++++TI/-Tmp-/fileinstall-898084298506420243, felix.fileinstall.filter = null}
    INFO: Hibernate EntityManager 3.3.2.GA
    INFO: Processing PersistenceUnitInfo [
            name: netescapewebPU
            ...]
    INFO: Binding entity from annotated class: com.netescape.domain.Client
    INFO: Bind entity com.netescape.domain.Client on table Client
    INFO: Binding entity from annotated class: com.netescape.domain.Societe
    INFO: Bind entity com.netescape.domain.Societe on table Societe
    INFO: Binding entity from annotated class: com.netescape.domain.Composant
    INFO: Bind entity com.netescape.domain.Composant on table Composant
    INFO: Binding entity from annotated class: com.netescape.domain.Activite
    INFO: Bind entity com.netescape.domain.Activite on table Activite
    INFO: Binding entity from annotated class: com.netescape.domain.Personne
    INFO: Bind entity com.netescape.domain.Personne on table Personne
    INFO: Binding entity from annotated class: com.netescape.domain.Contact
    INFO: Bind entity com.netescape.domain.Contact on table Contact
    INFO: Binding entity from annotated class: com.netescape.domain.Utilisateur
    INFO: Bind entity com.netescape.domain.Utilisateur on table Utilisateur
    INFO: Binding entity from annotated class: com.netescape.domain.Option
    INFO: Bind entity com.netescape.domain.Option on table Option
    INFO: Binding entity from annotated class: com.netescape.domain.Adresse
    INFO: Bind entity com.netescape.domain.Adresse on table Adresse
    INFO: Binding entity from annotated class: com.netescape.domain.Evaluation
    INFO: Bind entity com.netescape.domain.Evaluation on table Evaluation
    INFO: Binding entity from annotated class: com.netescape.domain.Service
    INFO: Bind entity com.netescape.domain.Service on table Service
    INFO: Binding entity from annotated class: com.netescape.domain.Condition
    INFO: Bind entity com.netescape.domain.Condition on table Condition
    INFO: Binding entity from annotated class: com.netescape.domain.Ressource
    INFO: Bind entity com.netescape.domain.Ressource on table Ressource
    INFO: Binding entity from annotated class: com.netescape.domain.Lieu
    INFO: Bind entity com.netescape.domain.Lieu on table Lieu
    INFO: Binding entity from annotated class: com.netescape.domain.Profil
    INFO: Bind entity com.netescape.domain.Profil on table Profil
    INFO: Binding entity from annotated class: com.netescape.domain.Motif
    INFO: Bind entity com.netescape.domain.Motif on table Motif
    INFO: Binding entity from annotated class: com.netescape.domain.Offre
    INFO: Bind entity com.netescape.domain.Offre on table Offre
    INFO: Binding entity from annotated class: com.netescape.domain.Ville
    INFO: Bind entity com.netescape.domain.Ville on table Ville
    INFO: Binding entity from annotated class: com.netescape.domain.Materiel
    INFO: Bind entity com.netescape.domain.Materiel on table Materiel
    INFO: Mapping collection: com.netescape.domain.Client.commandes -> Offre
    INFO: Mapping collection: com.netescape.domain.Client.contacts -> Contact
    INFO: Mapping collection: com.netescape.domain.Client.evaluations -> Evaluation
    INFO: Mapping collection: com.netescape.domain.Activite.evaluations -> Evaluation
    INFO: Mapping collection: com.netescape.domain.Activite.offres -> Offre
    INFO: Mapping collection: com.netescape.domain.Utilisateur.envois -> Offre
    INFO: Mapping collection: com.netescape.domain.Utilisateur.realises -> Offre
    INFO: Mapping collection: com.netescape.domain.Utilisateur.valides -> Offre
    INFO: Mapping collection: com.netescape.domain.Profil.utilisateurs -> Utilisateur
    INFO: Hibernate Validator not found: ignoring
    INFO: Initializing connection provider: org.hibernate.ejb.connection.InjectedDataSourceConnectionProvider
    INFO: Using provided datasource
    INFO: RDBMS: PostgreSQL, version: 8.4.2
    INFO: JDBC driver: PostgreSQL Native Driver, version: PostgreSQL 8.3 JDBC3 with SSL (build 603)
    INFO: Using dialect: org.hibernate.dialect.PostgreSQLDialect
    INFO: Transaction strategy: org.hibernate.ejb.transaction.JoinableCMTTransactionFactory
    INFO: instantiating TransactionManagerLookup: org.hibernate.transaction.SunONETransactionManagerLookup
    INFO: instantiated TransactionManagerLookup
    INFO: Automatic flush during beforeCompletion(): disabled
    INFO: Automatic session close at end of transaction: disabled
    INFO: JDBC batch size: 15
    INFO: JDBC batch updates for versioned data: disabled
    INFO: Scrollable result sets: enabled
    INFO: JDBC3 getGeneratedKeys(): disabled
    INFO: Connection release mode: auto
    INFO: Default batch fetch size: 1
    INFO: Generate SQL with comments: disabled
    INFO: Order SQL updates by primary key: disabled
    INFO: Order SQL inserts for batching: disabled
    INFO: Query translator: org.hibernate.hql.ast.ASTQueryTranslatorFactory
    INFO: Using ASTQueryTranslatorFactory
    INFO: Query language substitutions: {}
    INFO: JPA-QL strict compliance: enabled
    INFO: Second-level cache: enabled
    INFO: Query cache: disabled
    INFO: Cache provider: org.hibernate.cache.NoCacheProvider
    INFO: Optimize cache for minimal puts: disabled
    INFO: Structured second-level cache entries: disabled
    INFO: Statistics: disabled
    INFO: Deleted entity synthetic identifier rollback: disabled
    INFO: Default entity-mode: pojo
    INFO: Named query checking : enabled
    INFO: building session factory
    INFO: Not binding factory to JNDI, no JNDI name configured
    INFO: Running hbm2ddl schema export
    INFO: exporting generated schema to database
    INFO: schema export complete
    INFO: JNDI InitialContext properties:{}
    INFO: Portable JNDI names for EJB ContactFacade : [java:global/netescapeweb/ContactFacade!com.netescape.jpa.ContactFacade, java:global/netescapeweb/ContactFacade]
    INFO: Portable JNDI names for EJB EvaluationFacade : [java:global/netescapeweb/EvaluationFacade!com.netescape.jpa.EvaluationFacade, java:global/netescapeweb/EvaluationFacade]
    INFO: Portable JNDI names for EJB OptionFacade : [java:global/netescapeweb/OptionFacade, java:global/netescapeweb/OptionFacade!com.netescape.jpa.OptionFacade]
    INFO: Portable JNDI names for EJB SocieteFacade : [java:global/netescapeweb/SocieteFacade, java:global/netescapeweb/SocieteFacade!com.netescape.jpa.SocieteFacade]
    INFO: Portable JNDI names for EJB AdresseFacade : [java:global/netescapeweb/AdresseFacade, java:global/netescapeweb/AdresseFacade!com.netescape.jpa.AdresseFacade]
    INFO: Portable JNDI names for EJB MaterielFacade : [java:global/netescapeweb/MaterielFacade!com.netescape.jpa.MaterielFacade, java:global/netescapeweb/MaterielFacade]
    INFO: Portable JNDI names for EJB ActiviteFacade : [java:global/netescapeweb/ActiviteFacade, java:global/netescapeweb/ActiviteFacade!com.netescape.jpa.ActiviteFacade]
    INFO: Portable JNDI names for EJB ConditionFacade : [java:global/netescapeweb/ConditionFacade, java:global/netescapeweb/ConditionFacade!com.netescape.jpa.ConditionFacade]
    INFO: Portable JNDI names for EJB UtilisateurFacade : [java:global/netescapeweb/UtilisateurFacade, java:global/netescapeweb/UtilisateurFacade!com.netescape.jpa.UtilisateurFacade]
    INFO: Portable JNDI names for EJB ClientFacade : [java:global/netescapeweb/ClientFacade!com.netescape.jpa.ClientFacade, java:global/netescapeweb/ClientFacade]
    INFO: Portable JNDI names for EJB VilleFacade : [java:global/netescapeweb/VilleFacade!com.netescape.jpa.VilleFacade, java:global/netescapeweb/VilleFacade]
    INFO: Portable JNDI names for EJB LieuFacade : [java:global/netescapeweb/LieuFacade!com.netescape.jpa.LieuFacade, java:global/netescapeweb/LieuFacade]
    INFO: Portable JNDI names for EJB ServiceFacade : [java:global/netescapeweb/ServiceFacade!com.netescape.jpa.ServiceFacade, java:global/netescapeweb/ServiceFacade]
    INFO: Portable JNDI names for EJB ComposantFacade : [java:global/netescapeweb/ComposantFacade!com.netescape.jpa.ComposantFacade, java:global/netescapeweb/ComposantFacade]
    INFO: Portable JNDI names for EJB RessourceFacade : [java:global/netescapeweb/RessourceFacade, java:global/netescapeweb/RessourceFacade!com.netescape.jpa.RessourceFacade]
    INFO: Portable JNDI names for EJB ProfilFacade : [java:global/netescapeweb/ProfilFacade, java:global/netescapeweb/ProfilFacade!com.netescape.jpa.ProfilFacade]
    INFO: Portable JNDI names for EJB PersonneFacade : [java:global/netescapeweb/PersonneFacade!com.netescape.jpa.PersonneFacade, java:global/netescapeweb/PersonneFacade]
    INFO: Portable JNDI names for EJB MotifFacade : [java:global/netescapeweb/MotifFacade!com.netescape.jpa.MotifFacade, java:global/netescapeweb/MotifFacade]
    INFO: Portable JNDI names for EJB OffreFacade : [java:global/netescapeweb/OffreFacade, java:global/netescapeweb/OffreFacade!com.netescape.jpa.OffreFacade]
    INFO: Initialisation de Mojarra 2.0.2 (FCS b10) pour le contexte '/netescapeweb'
    INFO: Unsanitized stacktrace from failed start...
    javax.faces.view.facelets.FaceletException: Must have a Constructor that takes in a ComponentConfig
            at com.sun.faces.facelets.tag.AbstractTagLibrary$UserComponentHandlerFactory.<init>(AbstractTagLibrary.java:289)
            at com.sun.faces.facelets.tag.AbstractTagLibrary.addComponent(AbstractTagLibrary.java:519)
            at com.sun.faces.facelets.tag.TagLibraryImpl.putComponent(TagLibraryImpl.java:111)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processComponent(FaceletTaglibConfigProcessor.java:569)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processTags(FaceletTaglibConfigProcessor.java:361)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processTagLibrary(FaceletTaglibConfigProcessor.java:314)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.process(FaceletTaglibConfigProcessor.java:263)
            at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:337)
            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:223)
            at org.apache.catalina.core.StandardContext.contextListenerStart(StandardContext.java:4591)
            at com.sun.enterprise.web.WebModule.contextListenerStart(WebModule.java:535)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:5193)
            at com.sun.enterprise.web.WebModule.start(WebModule.java:499)
            at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:928)
            at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:912)
            at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:694)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1933)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1605)
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:90)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    Caused by: java.lang.NoSuchMethodException: org.ajax4jsf.taglib.html.facelets.ActionParamHandler.<init>(javax.faces.view.facelets.ComponentConfig)
            at java.lang.Class.getConstructor0(Class.java:2706)
            at java.lang.Class.getConstructor(Class.java:1657)
            at com.sun.faces.facelets.tag.AbstractTagLibrary$UserComponentHandlerFactory.<init>(AbstractTagLibrary.java:287)
            ... 49 more
    
    GRAVE: PWC1306: Startup of context /netescapeweb failed due to previous errors
    GRAVE: PWC1305: Exception during cleanup after start failed
    org.apache.catalina.LifecycleException: PWC2769: Manager has not yet been started
            at org.apache.catalina.session.StandardManager.stop(StandardManager.java:892)
            at org.apache.catalina.core.StandardContext.stop(StandardContext.java:5383)
            at com.sun.enterprise.web.WebModule.stop(WebModule.java:530)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:5211)
            at com.sun.enterprise.web.WebModule.start(WebModule.java:499)
            at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:928)
            at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:912)
            at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:694)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1933)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1605)
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:90)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    
    GRAVE: ContainerBase.addChild: start: 
    org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! org.ajax4jsf.taglib.html.facelets.ActionParamHandler.<init>(javax.faces.view.facelets.ComponentConfig)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:5216)
            at com.sun.enterprise.web.WebModule.start(WebModule.java:499)
            at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:928)
            at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:912)
            at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:694)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1933)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1605)
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:90)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    Caused by: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! org.ajax4jsf.taglib.html.facelets.ActionParamHandler.<init>(javax.faces.view.facelets.ComponentConfig)
            at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:354)
            at com.sun.faces.config.ConfigureListener.contextInitialized(ConfigureListener.java:223)
            at org.apache.catalina.core.StandardContext.contextListenerStart(StandardContext.java:4591)
            at com.sun.enterprise.web.WebModule.contextListenerStart(WebModule.java:535)
            at org.apache.catalina.core.StandardContext.start(StandardContext.java:5193)
            ... 38 more
    Caused by: java.lang.NoSuchMethodException: org.ajax4jsf.taglib.html.facelets.ActionParamHandler.<init>(javax.faces.view.facelets.ComponentConfig)
            at java.lang.Class.getConstructor0(Class.java:2706)
            at java.lang.Class.getConstructor(Class.java:1657)
            at com.sun.faces.facelets.tag.AbstractTagLibrary$UserComponentHandlerFactory.<init>(AbstractTagLibrary.java:287)
            at com.sun.faces.facelets.tag.AbstractTagLibrary.addComponent(AbstractTagLibrary.java:519)
            at com.sun.faces.facelets.tag.TagLibraryImpl.putComponent(TagLibraryImpl.java:111)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processComponent(FaceletTaglibConfigProcessor.java:569)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processTags(FaceletTaglibConfigProcessor.java:361)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.processTagLibrary(FaceletTaglibConfigProcessor.java:314)
            at com.sun.faces.config.processor.FaceletTaglibConfigProcessor.process(FaceletTaglibConfigProcessor.java:263)
            at com.sun.faces.config.ConfigManager.initialize(ConfigManager.java:337)
            ... 42 more
    
    ATTENTION: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! org.ajax4jsf.taglib.html.facelets.ActionParamHandler.<init>(javax.faces.view.facelets.ComponentConfig)
    java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! org.ajax4jsf.taglib.html.facelets.ActionParamHandler.<init>(javax.faces.view.facelets.ComponentConfig)
            at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:932)
            at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:912)
            at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:694)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1933)
            at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1605)
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:90)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    
    GRAVE: Exception while invoking class com.sun.enterprise.web.WebApplication start method
    java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! org.ajax4jsf.taglib.html.facelets.ActionParamHandler.<init>(javax.faces.view.facelets.ComponentConfig)
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:117)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    
    GRAVE: Exception while loading the app
    java.lang.Exception: java.lang.IllegalStateException: ContainerBase.addChild: start: org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! org.ajax4jsf.taglib.html.facelets.ActionParamHandler.<init>(javax.faces.view.facelets.ComponentConfig)
            at com.sun.enterprise.web.WebApplication.start(WebApplication.java:117)
            at org.glassfish.internal.data.EngineRef.start(EngineRef.java:126)
            at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:241)
            at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:236)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:339)
            at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:183)
            at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:272)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:305)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:320)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1176)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$900(CommandRunnerImpl.java:83)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1235)
            at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1224)
            at com.sun.enterprise.v3.admin.AdminAdapter.doCommand(AdminAdapter.java:365)
            at com.sun.enterprise.v3.admin.AdminAdapter.service(AdminAdapter.java:204)
            at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:166)
            at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:100)
            at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:245)
            at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:791)
            at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:693)
            at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:954)
            at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:170)
            at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:135)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:102)
            at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:88)
            at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:76)
            at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:53)
            at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:57)
            at com.sun.grizzly.ContextTask.run(ContextTask.java:69)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:330)
            at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:309)
            at java.lang.Thread.run(Thread.java:637)
    
    INFO: closing
    INFO: Running hbm2ddl schema export
    INFO: exporting generated schema to database
    INFO: schema export complete

  8. #8
    Rédacteur

    Profil pro
    Inscrit en
    Juin 2003
    Messages
    4 184
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juin 2003
    Messages : 4 184
    Par défaut
    tu peux donner le code de la page.

  9. #9
    Membre éclairé
    Inscrit en
    Mars 2006
    Messages
    227
    Détails du profil
    Informations forums :
    Inscription : Mars 2006
    Messages : 227
    Par défaut
    voici le code de la page index.xhtml

    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
     
    <?xml version='1.0' encoding='UTF-8' ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml"
          xmlns:h="http://java.sun.com/jsf/html">
        <h:head>
            <title>Facelet Title</title>
            <h:outputStylesheet name="css/jsfcrud.css"/>
        </h:head>
        <h:body>
     
            <h:form>
                <h:commandLink action="/pages/activite/List" value="Show All Activite Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/adresse/List" value="Show All Adresse Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/client/List" value="Show All Client Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/composant/List" value="Show All Composant Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/condition/List" value="Show All Condition Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/contact/List" value="Show All Contact Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/evaluation/List" value="Show All Evaluation Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/lieu/List" value="Show All Lieu Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/materiel/List" value="Show All Materiel Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/motif/List" value="Show All Motif Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/offre/List" value="Show All Offre Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/option/List" value="Show All Option Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/personne/List" value="Show All Personne Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/profil/List" value="Show All Profil Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/ressource/List" value="Show All Ressource Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/service/List" value="Show All Service Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/societe/List" value="Show All Societe Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/utilisateur/List" value="Show All Utilisateur Items"/>
            </h:form>
            <h:form>
                <h:commandLink action="/pages/ville/List" value="Show All Ville Items"/>
            </h:form>
        </h:body>
    </html>

Discussions similaires

  1. configurer sql pour envoyer des mails
    Par arwen dans le forum MS SQL Server
    Réponses: 6
    Dernier message: 29/07/2003, 15h28
  2. [postgresql]configuration serveur
    Par Fyna dans le forum PostgreSQL
    Réponses: 4
    Dernier message: 16/06/2003, 19h22
  3. [configuration] lancer plusieurs serveurs Tomcat
    Par polo54 dans le forum JBuilder
    Réponses: 4
    Dernier message: 13/06/2003, 15h52
  4. Configurer OpenGL/Glut avec C++Bluider
    Par MiGoN dans le forum OpenGL
    Réponses: 2
    Dernier message: 13/09/2002, 23h18
  5. BDE : Configurer automatiquement le NETDIR
    Par Harry dans le forum Paradox
    Réponses: 10
    Dernier message: 29/07/2002, 11h33

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