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 :

Parseur de faces-config.xml ne se connecte pas


Sujet :

JSF Java

  1. #1
    Rédacteur
    Avatar de MrDuChnok
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2002
    Messages
    2 112
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Juin 2002
    Messages : 2 112
    Points : 4 240
    Points
    4 240
    Par défaut Parseur de faces-config.xml ne se connecte pas
    Bonjour,

    Tout d'abord je suis novice dans la programmation JSF. J'ai repris un projet open-source sous Eclipse fonctionnant dans Tomcat. On passe par Maven pour compiler et déployer le projet. Maven déploie un .war dans tomcat.
    Au démarrage de Tomcat, il essaye d'installer le webapp à partir du .war. A un moment, Tomcat me sort une erreur qui m'indique que le parseur du fichier faces-config.xml n'arrive pas à trouver de route pour se connecter.

    Apparement il essaye de se connecter pour récupérer la dtd. Le chemin de la dtd est correct, je l'ai essayé dans un navigateur et ça fonctionne.
    Du coup je ne comprend pas pourquoi ça plante. Si quelqu'un pourrait m'indiquer un début de piste pour résoudre mon problème ça serait bien. Pour info je suis connecté derrière un proxy.

    Je vous joins l'erreur présente dans le fichier log de Tomcat.

    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
    Thread-1_org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/osp-wizard-tool])
    org.springframework.beans.factory.BeanDefinitionStoreException: IOException parsing XML document from ServletContext resource [/WEB-INF/faces-config.xml]; nested exception is java.net.NoRouteToHostException: No route to host: connect
    java.net.NoRouteToHostException: No route to host: connect
    	at java.net.PlainSocketImpl.socketConnect(Native Method)
    	at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
    	at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
    	at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
    	at java.net.Socket.connect(Socket.java:461)
    	at java.net.Socket.connect(Socket.java:411)
    	at sun.net.NetworkClient.doConnect(NetworkClient.java:139)
    	at sun.net.www.http.HttpClient.openServer(HttpClient.java:402)
    	at sun.net.www.http.HttpClient.openServer(HttpClient.java:618)
    	at sun.net.www.http.HttpClient.<init>(HttpClient.java:306)
    	at sun.net.www.http.HttpClient.<init>(HttpClient.java:267)
    	at sun.net.www.http.HttpClient.New(HttpClient.java:339)
    	at sun.net.www.http.HttpClient.New(HttpClient.java:320)
    	at sun.net.www.http.HttpClient.New(HttpClient.java:315)
    	at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:521)
    	at sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:498)
    	at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:626)
    	at org.apache.xerces.impl.XMLEntityManager.setupCurrentEntity(Unknown Source)
    	at org.apache.xerces.impl.XMLEntityManager.startEntity(Unknown Source)
    	at org.apache.xerces.impl.XMLEntityManager.startDTDEntity(Unknown Source)
    	at org.apache.xerces.impl.XMLDTDScannerImpl.setInputSource(Unknown Source)
    	at org.apache.xerces.impl.XMLDocumentScannerImpl$DTDDispatcher.dispatch(Unknown Source)
    	at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
    	at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    	at org.apache.xerces.parsers.XML11Configuration.parse(Unknown Source)
    	at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
    	at org.apache.xerces.parsers.DOMParser.parse(Unknown Source)
    	at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(Unknown Source)
    	at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.doLoadBeanDefinitions(XmlBeanDefinitionReader.java:222)
    	at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:173)
    	at org.springframework.beans.factory.xml.XmlBeanDefinitionReader.loadBeanDefinitions(XmlBeanDefinitionReader.java:148)
    	at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:129)
    	at org.springframework.beans.factory.support.AbstractBeanDefinitionReader.loadBeanDefinitions(AbstractBeanDefinitionReader.java:145)
    	at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:126)
    	at org.springframework.web.context.support.XmlWebApplicationContext.loadBeanDefinitions(XmlWebApplicationContext.java:94)
    	at org.springframework.context.support.AbstractRefreshableApplicationContext.refreshBeanFactory(AbstractRefreshableApplicationContext.java:89)
    	at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:262)
    	at org.springframework.web.context.support.AbstractRefreshableWebApplicationContext.refresh(AbstractRefreshableWebApplicationContext.java:139)
    	at org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:252)
    	at org.springframework.web.context.ContextLoader.initWebApplicationContext(ContextLoader.java:190)
    	at org.sakaiproject.component.impl.ContextLoader.initWebApplicationContext(ContextLoader.java:64)
    	at org.springframework.web.context.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:49)
    	at org.sakaiproject.util.ContextLoaderListener.contextInitialized(ContextLoaderListener.java:52)
    	at org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3729)
    	at org.apache.catalina.core.StandardContext.start(StandardContext.java:4187)
    	at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
    	at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
    	at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
    	at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:809)
    	at org.apache.catalina.startup.HostConfig.deployWARs(HostConfig.java:698)
    	at org.apache.catalina.startup.HostConfig.deployApps(HostConfig.java:472)
    	at org.apache.catalina.startup.HostConfig.start(HostConfig.java:1122)
    	at org.apache.catalina.startup.HostConfig.lifecycleEvent(HostConfig.java:310)
    	at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119)
    	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1021)
    	at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
    	at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1013)
    	at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
    	at org.apache.catalina.core.StandardService.start(StandardService.java:450)
    	at org.apache.catalina.core.StandardServer.start(StandardServer.java:709)
    	at org.apache.catalina.startup.Catalina.start(Catalina.java:551)
    	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    	at java.lang.reflect.Method.invoke(Method.java:324)
    	at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:294)
    	at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:432)

  2. #2
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 44
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    A mon avis ca provient du proxy, est-ce que tu peux accéder à ton application ?

    pour paramétrer un proxy sur tomcat : http://www.ericsson.com/mobilityworl...oxy_for_tomcat

  3. #3
    Rédacteur
    Avatar de MrDuChnok
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2002
    Messages
    2 112
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Juin 2002
    Messages : 2 112
    Points : 4 240
    Points
    4 240
    Par défaut
    En effet ces lignes n'étaient pas présentes dans mon fichier de configuration de tomcat.
    Je les ai donc rajouté, mais ça ne change rien à mon problème...

    Une autre piste ?

  4. #4
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 44
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    montre nous voir le contenu de ton fichier de conf "faces-config.xml"

  5. #5
    Rédacteur
    Avatar de MrDuChnok
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2002
    Messages
    2 112
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Juin 2002
    Messages : 2 112
    Points : 4 240
    Points
    4 240
    Par défaut
    le voici :
    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
    <?xml version="1.0"?>
     
    <!DOCTYPE faces-config PUBLIC
      "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
      "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
     
    <!-- =========== FACES CONFIGURATION FILE ================================== -->
     
    <faces-config>
       <!-- Example custom JSF component used only in this tool -->
     
       <application>
         <message-bundle>org.theospi.portfolio.wizard.bundle.Messages</message-bundle>
         <locale-config>
     
           <default-locale>en</default-locale>
         </locale-config>
       </application>
     
       <!-- =================== Tool Beans ============== -->
     
     
       <managed-bean>
     
          <description>WizardTool</description>
          <managed-bean-name>wizard</managed-bean-name>
          <managed-bean-class>org.theospi.portfolio.wizard.tool.WizardTool</managed-bean-class>
          <managed-bean-scope>session</managed-bean-scope>
     
          <managed-property>
             <description>Service Dependency: wizardManager</description>
             <property-name>wizardManager</property-name>
             <value>#{Components["org.theospi.portfolio.wizard.mgt.WizardManager"]}</value>
          </managed-property>
          <managed-property>
             <description>Service Dependency: guidanceManager</description>
             <property-name>guidanceManager</property-name>
             <value>#{Components["org.theospi.portfolio.guidance.mgt.GuidanceManager"]}</value>
          </managed-property>
          <managed-property>
             <description>Service Dependency: idManager</description>
             <property-name>idManager</property-name>
             <value>#{Components["idManager"]}</value>
          </managed-property>
          <managed-property>
             <description>Service Dependency: matrixManager</description>
             <property-name>matrixManager</property-name>
             <value>#{Components["matrixManager"]}</value>
          </managed-property>
          <managed-property>
             <description>Service Dependency: authzManager</description>
             <property-name>authzManager</property-name>
             <value>#{Components["authzManager"]}</value>
          </managed-property>
          <managed-property>
             <description>Service Dependency: authzManager</description>
             <property-name>authManager</property-name>
             <value>#{Components["authManager"]}</value>
          </managed-property>
          <managed-property>
             <description>Service Dependency: workflowManager</description>
             <property-name>workflowManager</property-name>
             <value>#{Components["org.theospi.portfolio.workflow.mgt.WorkflowManager"]}</value>
          </managed-property>
          <managed-property>
             <description>Service Dependency: reviewManager</description>
             <property-name>reviewManager</property-name>
             <value>#{Components["org.theospi.portfolio.review.mgt.ReviewManager"]}</value>
          </managed-property>
          <managed-property>
             <description>Service Dependency: contentHosting</description>
             <property-name>contentHosting</property-name>
             <value>#{Components["org.sakaiproject.content.api.ContentHostingService"]}</value>
          </managed-property>
       </managed-bean>
     
      <navigation-rule>
        <from-view-id>/wizard/listWizards.jsp</from-view-id>
         <navigation-case>
           <from-outcome>editWizard</from-outcome>
           <to-view-id>/wizard/editWizard.jsp</to-view-id>
           <redirect/>
         </navigation-case>
         <navigation-case>
           <from-outcome>editWizardType</from-outcome>
           <to-view-id>/wizard/editWizardType.jsp</to-view-id>
           <redirect/>
         </navigation-case>
         <navigation-case>
           <from-outcome>runWizard</from-outcome>
           <to-view-id>/wizard/runWizardGuidance.jsp</to-view-id>
           <redirect/>
         </navigation-case>
         <navigation-case>
           <from-outcome>importWizard</from-outcome>
           <to-view-id>/wizard/importWizard.jsp</to-view-id>
           <redirect/>
         </navigation-case>
         <navigation-case>
           <from-outcome>confirmDeleteWizard</from-outcome>
           <to-view-id>/wizard/confirmDeleteWizard.jsp</to-view-id>
           <redirect/>
         </navigation-case>
      </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/editWizardType.jsp</from-view-id>
          <navigation-case>
            <from-outcome>editWizard</from-outcome>
            <to-view-id>/wizard/editWizard.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>listWizards</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/editWizard.jsp</from-view-id>
          <navigation-case>
            <from-outcome>editWizardPages</from-outcome>
            <to-view-id>/wizard/editWizardPages.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>editWizardSupport</from-outcome>
            <to-view-id>/wizard/editWizardSupport.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>editWizardType</from-outcome>
            <to-view-id>/wizard/editWizardType.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>listWizards</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/editWizardPages.jsp</from-view-id>
          <navigation-case>
            <from-outcome>editWizard</from-outcome>
            <to-view-id>/wizard/editWizard.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>editWizardCategory</from-outcome>
            <to-view-id>/wizard/editWizardCategory.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>editWizardSupport</from-outcome>
            <to-view-id>/wizard/editWizardSupport.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>listWizards</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>confirmDeletePage</from-outcome>
            <to-view-id>/wizard/confirmDeletePage.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/confirmDeletePage.jsp</from-view-id>
          <navigation-case>
            <from-outcome>continue</from-outcome>
            <to-view-id>/wizard/editWizardPages.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>cancel</from-outcome>
            <to-view-id>/wizard/editWizardPages.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/editWizardSupport.jsp</from-view-id>
          <navigation-case>
            <from-outcome>editWizard</from-outcome>
            <to-view-id>/wizard/editWizard.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>editWizardPages</from-outcome>
            <to-view-id>/wizard/editWizardPages.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>editWizardDesign</from-outcome>
            <to-view-id>/wizard/editWizardDesign.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>editWizardProperties</from-outcome>
            <to-view-id>/wizard/editWizardProperties.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>listWizards</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/editWizardDesign.jsp</from-view-id>
          <navigation-case>
            <from-outcome>editWizardSupport</from-outcome>
            <to-view-id>/wizard/editWizardSupport.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>editWizardProperties</from-outcome>
            <to-view-id>/wizard/editWizardProperties.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>listWizards</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/editWizardProperties.jsp</from-view-id>
          <navigation-case>
            <from-outcome>editWizardSupport</from-outcome>
            <to-view-id>/wizard/editWizardSupport.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>listWizards</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/editWizardCategory.jsp</from-view-id>
          <navigation-case>
            <from-outcome>editWizardPages</from-outcome>
            <to-view-id>/wizard/editWizardPages.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/runWizardGuidance.jsp</from-view-id>
          <navigation-case>
            <from-outcome>listWizards</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>main</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>page</from-outcome>
            <to-view-id>/wizard/runWizard.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>confirmSubmit</from-outcome>
            <to-view-id>/wizard/confirmSubmit.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/runWizard.jsp</from-view-id>
          <navigation-case>
            <from-outcome>main</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>confirmSubmit</from-outcome>
            <to-view-id>/wizard/confirmSubmit.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/runWizardEnd.jsp</from-view-id>
          <navigation-case>
            <from-outcome>main</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/confirmSubmit.jsp</from-view-id>
          <navigation-case>
            <from-outcome>cancelled</from-outcome>
            <to-view-id>/wizard/runWizardGuidance.jsp</to-view-id>
            <redirect/>
          </navigation-case>
          <navigation-case>
            <from-outcome>submitted</from-outcome>
            <to-view-id>/wizard/runWizardEnd.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/importWizard.jsp</from-view-id>
          <navigation-case>
            <from-outcome>listWizards</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
       <navigation-rule>
         <from-view-id>/wizard/confirmDeleteWizard.jsp</from-view-id>
          <navigation-case>
            <from-outcome>listWizards</from-outcome>
            <to-view-id>/wizard/listWizards.jsp</to-view-id>
            <redirect/>
          </navigation-case>
       </navigation-rule>
     
     
    	<managed-bean>
    		<description>
    			Dynamic Resource Bundle Loader
    		</description>
    		<managed-bean-name>msgs</managed-bean-name>
    		<managed-bean-class>org.sakaiproject.util.ResourceLoader</managed-bean-class>
    		<managed-bean-scope>session</managed-bean-scope>
    		<managed-property>
    			<description>Bundle baseName</description>
    			<property-name>baseName</property-name>
    			<value>org.theospi.portfolio.wizard.bundle.Messages</value>
    		</managed-property>
    	</managed-bean>
     
    </faces-config>

  6. #6
    Inactif  
    Profil pro
    Inscrit en
    Mai 2006
    Messages
    2 189
    Détails du profil
    Informations personnelles :
    Âge : 44
    Localisation : Suisse

    Informations forums :
    Inscription : Mai 2006
    Messages : 2 189
    Points : 2 336
    Points
    2 336
    Par défaut
    je lookais juste si une erreur de balise était présente

    mais je me demande si tu peux définir
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    #{Components["org.theospi.portfolio.wizard.mgt.WizardManager"]}

  7. #7
    Rédacteur
    Avatar de MrDuChnok
    Homme Profil pro
    Ingénieur développement logiciels
    Inscrit en
    Juin 2002
    Messages
    2 112
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 40
    Localisation : France

    Informations professionnelles :
    Activité : Ingénieur développement logiciels
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Juin 2002
    Messages : 2 112
    Points : 4 240
    Points
    4 240
    Par défaut
    Ben apparement ça ne pose pas de soucis à ce niveau là. Vu que d'autres fichiers faces-config fonctionnent bien à coté avec ce même genre de propriété.

    Donc voila je suis un peu perdu ^^

Discussions similaires

  1. Réponses: 11
    Dernier message: 29/07/2009, 10h31
  2. [Débutant]faces-config.xml : no grammar found
    Par barnoufal dans le forum JSF
    Réponses: 2
    Dernier message: 16/04/2009, 08h54
  3. définition fichier faces-config .xml
    Par chris_013 dans le forum JSF
    Réponses: 1
    Dernier message: 04/03/2009, 09h24
  4. Réponses: 4
    Dernier message: 24/06/2008, 16h45
  5. validateur et faces-config.xml
    Par cterra dans le forum JSF
    Réponses: 2
    Dernier message: 26/02/2007, 18h42

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