I have packed the myfaces-api.1.2.2.jar and myfaces-impl.1.2.2.jar into my war's web-inf/lib directory. If i deploy this to the weblogic 10.3 server as a zipped war file the startup log shows:
INFO: FacesConfigurator:339 - MyFaces-package : myfaces-api not found.
INFO: FacesConfigurator:339 - MyFaces-package : myfaces-impl not found.
INFO: FacesConfigurator:339 - MyFaces-package : tomahawk-sandbox not found.
INFO: FacesConfigurator:339 - MyFaces-package : tomahawk not found.
If i take the jars out of the war and put them into the domain's lib directory for the system classpath then all works fine and the startup log shows:
INFO: Starting up MyFaces-package : myfaces-api in version : 1.2.2 from path : file:/C:/weblogic/user_projects/domains/testDomain/lib/myfaces-api-1.2.2.jar
INFO: Starting up MyFaces-package : myfaces-impl in version : 1.2.2 from path : file:/C:/weblogic/user_projects/domains/testDomain/lib/myfaces-impl-1.2.2.jar
INFO: MyFaces-package : tomahawk-sandbox not found.
INFO: Starting up MyFaces-package : tomahawk in version : 1.1.6 from path : file:/C:/weblogic/user_projects/domains/testDomain/lib/tomahawk-1.1.6.jar
I would like to have this deployed as a shared library war in weblogic... so the question is how can i get the myfaces jars to be recognized when packed in a war file?