I forgot to mention that if I modify web.xml to the snippet shown below the problems still
persist.
<?xml version="1.0"?>
| <web-app
xmlns="http://java.sun.com/xml/ns/j2ee"
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
| version="2.4">
|
| <servlet>
| <servlet-name>Faces Servlet</servlet-name>
| <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
| <load-on-startup>1</load-on-startup>
| </servlet>
| <servlet-mapping>
| <servlet-name>Faces Servlet</servlet-name>
| <url-pattern>*.faces</url-pattern>
| </servlet-mapping>
|
| <!-- Welcome files -->
| <welcome-file-list>
| <welcome-file>index.jsp</welcome-file>
| <welcome-file>index.html</welcome-file>
| </welcome-file-list>
|
| </web-app>
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4153669#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...