Long time since blogged was busy at work; so lets get down to the business.
If we want to use JSF 1.2, we would require setting the class loader as application first to overide the in-built JSF implementation available with WAS 6.1. AFAIK, this would work fine when we use Facelets. If we feel we need to stick to JSF1.1 to avoid this scenario, Facelets wouldn't work with the Sun RI's implementation of JSF 1.1 but it does with the MyFaces implementation of the same and as also with Sun RI of JSF1.2.
So we need to decide on the following:
1. WAS 6.1 + MyFaces JSF 1.1 + Facelets (this might also require a class loader as application first in WAS, not sure about it).
2. WAS 6.1 + MyFaces JSF 1.2 + Facelets (this requires a class loader as application first in WAS for sure)
3. WAS 6.1 + Sun JSF 1.1 + JSP + any other AJAX control framework like Richfaces/Icefaces. (I'm not comfortable with this combination especially after reading on the benefits of using Facelets).
Most likely, we might go with option 2 probably after a blessing from the architecture team.