This is data from jsf-ibm.jar (MANIFEST.MF file), in order to provide info
about the version of jsf which is being used by the application I am currently working on:
Manifest-Version: 1.0
Ant-Version: Apache Ant 1.8.2
Created-By: IBM Corporation
Specification-Title: Java Server Faces
Implementation-Title: JSF Widget Library (JWL) - Base
Implementation-Version: JWL v3_1_13
Implementation-Vendor: IBM
Build-Version: 20120307.2306
Build-Date: March 7 2012
Copyright-Info: Copyright (c) 2003,2008, International Business Machin
es Corporation. All Rights Reserved.
In faces-config.xml file I have:
<navigation-rule>
<from-view-id>/myapp/books/bookA.jsp</from-view-id>
<navigation-case>
<from-action>#{controller.doSaveAction}</from-action>
<from-outcome>SUCCESS</from-outcome>
<to-view-id>/myapp/books/somePage.jsp</to-view-id>
</navigation-case>
</navigation-rule>
My question is about from-view-id tag.
For business needs, application has 2 projects, e.g. Project and ExternalProject.
Each of this two projects contains page bookA.jsp:
- Project/WebContent/myapp/books/bookA.jsp and
- ExternalProject/WebContent/myapp/books/bookA.jsp
So, does this navigation-rule, defined in faces-config.xml file, applies in both cases (for both projects/apps - Project and ExternalProject)? Or do you know that something like that would be specified somewhere else (currently, I don't know where, I have searched faces-config.xml file by project names, but found nothing ... :))?
Any kind of information is very appreciated.
Thank you in advance.
Best regards,
mismas