[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-06-29 Thread begimot
Ok, if I'm not missing something, I have the same problem when trying to use JSF tags: root cause 13:14:44,918 ERROR [UIComponentTag] Faces context not found. getResponseWriter will fail. Check if the FacesServlet has been initialized at all in your web.xml. 13:14:44,921 ERROR [[mainJsp]]

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-06-29 Thread begimot
Hi again. I managed to ran my application. I am not very sure what is the reason but here is my adventure: I removed from jboss-4.0.3SP1/server/default/deploy/jbossweb-tomcat55.sar jsf-libs dir. I put all necessary libs in my web application, which are jsf-api.jar jsf-impl.jar and

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-05-16 Thread prideafrica
I was having the same Faces Context problem with JSF apps developed on NetBeans 5.0 and deployed to JBoss-4.0.3SP1. Even after moving to JBoss-4.0.2, I still see the same problem. Was anyone ever able to resolve this problem? View the original post :

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-03-01 Thread michea
I don't know if this is a similar case for you, but I exactly obtained this error when I accessed my JSF page through a link where I forgot to add the /faces/ pattern defined in the web.xml file: servlet-mapping servlet-nameFaces Servlet/servlet-name

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-02-13 Thread bhanuk
I am reading through this post and cannot find a solution http://wiki.jboss.org/wiki/Wiki.jsp?page=JbossFaces does not exist. I still have this problem trying to Invoke Faces Servlet. Please help! Thanks a bunch! This is my web.xml context-param

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-02-13 Thread dhinojosa
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossFaces capital B, sorry bhanuk wrote : I am reading through this post and cannot find a solution | | http://wiki.jboss.org/wiki/Wiki.jsp?page=JbossFaces does not exist. | | I still have this problem trying to Invoke Faces Servlet.

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-01-31 Thread gzhuye
It is a bug with Jboss4.0.3SP1, instead of with JSF and anything else. I tested the exact same application in both Jboss4.0.2 and Jboss4.0.3SP1, it worked very well in Jboss4.0.2. same problem as above with Jboss4.0.3SP1 View the original post :

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-01-31 Thread dhinojosa
I believe this problem occurs because JBoss4.0.3 not comes packaged with myFaces and we have a collision http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossFaces I am going to give this a try and post the solution. View the original post :

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-01-31 Thread dhinojosa
YEP! SOLUTION: http://wiki.jboss.org/wiki/Wiki.jsp?page=JBossFaces Just read the bottom. View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3920825#3920825 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3920825

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-01-29 Thread [EMAIL PROTECTED]
Hi, does anyone know how to fix this problem for projects created in java studio creator 2, Here is the xml file created ?xml version=1.0 encoding=UTF-8? web-app xmlns=http://java.sun.com/xml/ns/j2ee; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; version=2.4

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-01-22 Thread granby
If I create and deploy a JSF-web project with the wizard in netbeans5rc2 I get a nullpointer exception when I click the link on the start-page. I havent figured out why you get a nullpointer exception but I did this: 1) In the library manager I created a new library JbossJSF with the JSF

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-01-19 Thread [EMAIL PROTECTED]
I am having the same problem using netbeans 5.0 jboss-4.0.3.SP1. I tried the solutions above, bu maybe I did something wrong. My web.xml faces-config.xml are: ?xml version=1.0 encoding=UTF-8? web-app version=2.4 xmlns=http://java.sun.com/xml/ns/j2ee;

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2006-01-05 Thread kjmansour
Thanks for the tip. This also worked for me under JBoss 4.0.3sp1. It appears that JSF needs the redirect to properly load the Faces Context. Not a big problem, but one that needs to be reported better. View the original post :

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2005-12-23 Thread lyjjq
my env is eclipse +tomcat5.0,i find this same problem in this afternoon ,now i think it is jsf' bug , it now allow input http://localhost:8080/jsfselect/home.jsp, must forward this page from other page , for example index.jsp index.jsp content: jsp:forward page=/jsfselect/home.jsp /

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2005-12-08 Thread rammohankumar
I had the same error. But I could get out of it by replacing the taglib definitions. I replaced the below lines %@ taglib uri=http://java.sun.com/jsf/core; prefix=f % %@ taglib uri=http://java.sun.com/jsf/html; prefix=h % with the JBoss supplied tag libraries that were copied to my WEB-INF

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2005-12-07 Thread Neelixx
I am also having this issue, with several of my JSF apps. DVD and Seam Trailblazers work fine, but none of my JSF apps work. Keep getting a null pointer exception, including apps built using Java Studio Creator 2004Q2 Any help would be great! View the original post :

[JBoss-user] [Tomcat, HTTPD, Servlets JSP] - Re: ERROR [javax.faces.webapp.UIComponentTag] Faces context

2005-12-07 Thread noodnik2
Check out section 9.9 of: http://docs.jboss.org/jbossas/jboss4guide/r4/html/ch9.chapt.html View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3911350#3911350 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3911350