Mike wrote:
Hi all,
I'm tying to get the simple car data table example to work so I can
hopefully figure out why my data table sorting isn't working in my other
project, but I'm getting a strange error when I try to run it.
*Dec 31, 2005 11:43:43 AM javax.faces.webapp.UIComponentTag
setupResponseWriter
SEVERE: Faces context not found. getResponseWriter will fail. Check if
the FacesServlet has been initialized at all in your web.xml.*
Because you're not invoking the FacesServlet:
Here's my Web.xml:
...
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>*.jsf</url-pattern>
</servlet-mapping>
</web-app>*
http://localhost:8080/Car/sortTable.jsp, but get these logged errors:
That should be .../sortTable.jsf.
L.