Hy guys,
I installed jboss-seam on weblogic 10.3 (with many problem :( ) but now it\'s work, my application is deployed.
But now, I have a new problem, my JSF is
If the XHTML page is not been parsed by the FacesServlet
, then it simply means that the request URL did not match the url-pattern
of the FacesServlet
. You have set its url-pattern
to *.seam
So, to open the JSF page, you should not invoke it by http://example.com/page.xhtml, but by http://example.com/page.seam.
By the way, the javax.faces.DEFAULT_SUFFIX
sets the actual file extension of template files where JSF should look for and parse. You've set it to .seam
as well, but this should really be .xhtml
.