My environment is RAD 8, WAS 7.0.x with a lot of JSPs and Servlets. The application also uses JAX-RPC and JAX-WS I want to introduce JSF and start migrating some easier JSPs.
I have a huge issue that I can not migrate to JSF 2.0 straight away, because my target is WAS 7.x and I came across that it does not support JSF 2.0. I share the WAS 7.x with other business groups. So I have to use JSF 1.2 for now ..
In RAD 8, I tried following:
From an testJSF.jsp file, I used c:redirect to /faces/test1.jsp. I also tried jsp:forward to /faces/test1.jsp. Servlet-mapping has url-pattern entries for /faces/* and *.jsp This time WAS 7, gave me /test1.jsp not found...
Then I tried , from testJSF.jsp file, I used c:redirect to /faces/test1.jsf I also tried jsp:forward to /faces/test1.jsf. This time I also changed, Servlet-mapping with url-pattern entries for /faces/* and *.jsf This time WAS 7 went in an endless loop with stack overflow..
Under these environments, what should be url-pattern for servlet-mapping and how should I refer the new JSF 1.2 pages?