Re: Tomcat 6.0.26, JSF problems

2010-04-13 Thread Konstantin Kolinko
2010/4/13 Peter Kovgan peter.kov...@gmail.com: I have simple and standard MyFaces app. deployed, that worked successfully on 6.0.18 tomcat on the same OS(Ubuntu kernel 2.6.31-20-generic, i686). After deploy on 6.0.26 it stops to work correctly. For the #{} expressions to be recognized in

RE: Tomcat and JSF

2008-05-02 Thread Caldarale, Charles R
From: jaykay [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat and JSF May 2, 2008 9:38:40 AM org.apache.catalina.loader.WebappClassLoader validateJarFile INFO: validateJarFile(C:\apache-tomcat-6.0.14\webapps\ROOT\WEB-INF\l ib\j2ee.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2

RE: Tomcat and JSF

2008-05-02 Thread jaykay
[] startup failed due to previous errors. Does this mean anything? Jay Caldarale, Charles R wrote: From: jaykay [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat and JSF May 2, 2008 9:38:40 AM org.apache.catalina.loader.WebappClassLoader validateJarFile INFO: validateJarFile(C:\apache

Re: Tomcat and JSF

2008-05-02 Thread jaykay
Chris, Yes, I have the jars in .../My_Webapp/WEB-INF/lib folder. I use Tomcat6.0.14. I tried Tomcat5.5 also, but got the same result. This is the log file when the server starts without the jars in the lib folder. And this should be the expected result May 2, 2008 9:38:40 AM

RE: Tomcat and JSF

2008-05-02 Thread Caldarale, Charles R
From: jaykay [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat and JSF May 2, 2008 9:38:40 AM org.apache.catalina.loader.WebappClassLoader validateJarFile INFO: validateJarFile(C:\apache-tomcat-6.0.14\webapps\ROOT\WEB-INF\l ib\j2ee.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2

RE: Tomcat and JSF

2008-05-02 Thread jaykay
Hi chuck, yes, I removed j2ee.jar. But still the problem persists. Jay Caldarale, Charles R wrote: From: jaykay [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat and JSF May 2, 2008 9:38:40 AM org.apache.catalina.loader.WebappClassLoader validateJarFile INFO: validateJarFile(C:\apache

RE: Tomcat and JSF

2008-05-02 Thread Caldarale, Charles R
From: jaykay [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat and JSF yes, I removed j2ee.jar. But still the problem persists. And what do the logs say now? - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended

RE: Tomcat and JSF

2008-05-02 Thread jaykay
org.apache.jk.server.JkMain start INFO: Jk running ID=0 time=0/32 config=null May 2, 2008 11:01:06 AM org.apache.catalina.startup.Catalina start INFO: Server startup in 893 ms Jay Caldarale, Charles R wrote: From: jaykay [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat and JSF yes, I

RE: Tomcat and JSF

2008-05-02 Thread jaykay
May 2, 2008 11:04:19 AM tt.util.STD error SEVERE: slowDown Data: getting a connection took 203 Jay Caldarale, Charles R wrote: From: jaykay [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat and JSF yes, I removed j2ee.jar. But still the problem persists. And what do the logs say now

RE: Tomcat and JSF

2008-05-02 Thread jaykay
org.apache.catalina.core.StandardEngine start INFO: Starting Servlet Engine: Apache Tomcat/6.0.14 May 2, 2008 11:04:19 AM tt.util.STD error SEVERE: slowDown Data: getting a connection took 203 Jay Caldarale, Charles R wrote: From: jaykay [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat and JSF yes, I removed

Re: Tomcat and JSF

2008-05-02 Thread David Smith
a connection took 203 Jay Caldarale, Charles R wrote: From: jaykay [mailto:[EMAIL PROTECTED] Subject: RE: Tomcat and JSF yes, I removed j2ee.jar. But still the problem persists. And what do the logs say now? - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL

Re: Tomcat and JSF

2008-05-01 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Jay, jaykay wrote: | Now as a first step to change the UI using JSF, I copied the jsf-api.jar and | jsf-impl.jar in to tomcat_dir/webapps/My_Webapp_name/web-inf/lib I presume that you mean .../My_Webapp/WEB-INF/lib | Now the | tomcat server

Re: Tomcat 6.0.8 JSF 1.2 RI

2007-01-29 Thread Zaphod
I found the reason a few days ago: I overlooked that I had the jsp lib in 2 different locations, so they were loaded in different classloaders. Thanks to all replies. martind wrote: I am able to use JSF 1.2_03 RI inside Tomcat 6.0.8. Ensure you have the JSTL 1.2 also loaded. Martin

Re: Tomcat 6.0.8 JSF 1.2 RI

2007-01-29 Thread Jason Rasmussen
I found that with Tomcat 6.0.8, I didn't need to initialize the JspRuntimeContext, however my ELResolver is never actually hit. I placed print outs in the constructor and all the overridden methods of my ELResolver to determine if they were ever called. Only the constructor is ever called. The

Re: Tomcat 6.0.8 JSF 1.2 RI

2007-01-23 Thread Martin Dubuc
I am able to use JSF 1.2_03 RI inside Tomcat 6.0.8. Ensure you have the JSTL 1.2 also loaded. Martin On 1/22/07, Zaphod [EMAIL PROTECTED] wrote: I try to use the JSF 1.2_03 RI with Tomcat 6.0.8. I get a NullPointerException: Servlet.service() for servlet jsp threw exception

Re: Tomcat 6.0.8 JSF 1.2 RI

2007-01-23 Thread srowen
I am seeing the same problem, via a different route. Check this out -- it solves this specific problem for me: http://issues.apache.org/bugzilla/show_bug.cgi?id=39804 I made a simple listener which calls Class.forName(org.apache.jasper.compiler.JspRuntimeContext); first Sean -- View this

Re: Tomcat 6.0.8 JSF 1.2 RI

2007-01-22 Thread Tim Funk
Check your server.xml - this should be in it - if not - then you will (sometimes) get the error as described below: Listener className=org.apache.catalina.core.JasperListener / -Tim Zaphod wrote: I try to use the JSF 1.2_03 RI with Tomcat 6.0.8. I get a NullPointerException:

Re: Tomcat and JSF. Internet Explorer prompts for download

2006-11-09 Thread Josué Alcalde González
El mié, 08-11-2006 a las 10:11 +0100, Josué Alcalde González escribió: Thanks for your answers. I will talk about my experiences with the solutions. I try to define a mime-type in web.xml, but it didn't work. Studying the source code in Internet Explorer (the file he tries to download), I

Re: Tomcat and JSF. Internet Explorer prompts for download

2006-11-08 Thread Martin Gainty
Josue- I cannot resolve http://java.sun.com/jsf/html from your index.jsp Entiende? M This e-mail communication and any attachments may contain confidential and privileged information for the use of the designated recipients named above. If you are not the intended recipient, you are hereby

Re: Tomcat and JSF. Internet Explorer prompts for download

2006-11-08 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Josué, Josué Alcalde González wrote: I am developing a JSF application using tomcat 5.5.20 and myfaces 1.1.4. It works perfect in Firefox but IE doesn't show the faces pages, but it prompts to download. MSIE is a pile of crap. Given your JSP

Re: Tomcat and JSF. Internet Explorer prompts for download

2006-11-08 Thread Stephen Souness
I'm no JSF expert, but the following might get you somewhere... Do you have a MIME type configured for the url extension(s) that you have for your JSF URLs? I've also seen a recommendation to add the following directive: jsp:directive.page contentType=text/html/ on the Core JSF FAQ page.