Tagged Questions
0
votes
2answers
22 views
Datalist Pattern with Jsf 2 and CDI
I've an class like...
@RequestScoped
public class UserList
...
public List<User> getUserList(){
return getEntityManager().createQuery(getCriteria()).getResultList();
//getCriteria() hard ...
1
vote
0answers
23 views
tomcat6 jsf2 security manager - IllegalStateException: javax.faces.application.ApplicationFactory
my trouble is
IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.application.ApplicationFactory
this is my configuration
...
7
votes
1answer
155 views
JSF2 application not accessible without /faces/
I have a JSF2 application
I can access my application @ http://tvmteleshopping.com/faces/ui/manageProfile.xhtml
but when i use http://tvmteleshopping.com/ui/manageProfile.xhtml (without /faces/ )
...
0
votes
1answer
26 views
Is that possible to uplod and download files with jsf with tomcat
)
I would like to ask a question ..I'm a beginner for handling files :)
is that possible to upload in my application files Pdf in location like C:/folders/pdfs/...
when I create a new component
and ...
0
votes
1answer
60 views
No ViewState is sent
I have a JSF 2.2.0-m12 application with primefaces 3.5. Since I ported the application from JBoss 7.1.1 to Tomcat 7.0.39, the first change of an inputfield (inputtext, slider, button,...) after ...
0
votes
1answer
47 views
Will an app built with MyFaces 2.1.11 run on Tomcat 6.0.24?
I am just starting a new web application (as a learning project). I have some freedom to choose what framework I use, but I must use JavaEE, it must be MVC, and it must run on Tomcat 6.0.24. I've ...
0
votes
1answer
82 views
In which jsf phase does @AssertTrue annotation checked?
I have a JSF application and I am using @AssertTrue on a method called isPasswordsEquals() to confirm a password match. However, the method doesn't seem to work correctly. It adds the error message to ...
0
votes
0answers
55 views
set tomcat to work with dcevm in eclipse jsf2
how to use dcevm with tomcat and eclipse
I downloaded the jdk6u25 and I set tomcat7 to work with it in eclipse juno then when I change anything in the managed bean it works, but the change in the ...
1
vote
0answers
85 views
JSF folder deployment to Tomcat
RackSpace Cloud Server Ubuntu-12.04, JSF-2.0, Mojarra-2.1.17, Intellij Idea-11.1.2, Windows-8, Tomcat 7.0.26, JDK-6.
As it can be seen here I am trying to deploy my project to the remote Tomcat ...
0
votes
0answers
35 views
Problems with deploying application on Tomcat Server
For some time I'm learning JSF/Java EE. From the beginning I've an annoying problem with deploying my application using Netbeans to Tomcat7 server.
The app is deploying on every save but sometimes ...
0
votes
0answers
266 views
Constructor must call super() or this() before return
I'm using JavaServer Faces and Hibernate 3.2.5 and have problems with compiling this code:
package org.tuke.regbudov.entity;
import javax.persistence.metamodel.SingularAttribute;
import ...
0
votes
0answers
65 views
Tomcat and JSF: EL Expression returns null
I have the following problem: I have a webapplication using JSF 2 for the frontend. Until now the project and the deployment (using Tomcat 7) was configured just from eclipse. Everything worked fine.
...
0
votes
0answers
105 views
Deploy of JSF app at eatj.com fails with “could not find Factory: javax.faces.application.ApplicationFactory”
I am trying to host my jsf project on http://s16.eatj.com/myacct.jsp. But I could not get it started yet. Before plunging deep into stacktrace, my question is can any apache tomcat >= 6.0 run jsf ...
1
vote
1answer
169 views
Can't see the welcome page when deploying JSF2 app in tomcat
I want to deploy my JSF2 app on tomcat using mvn tomcat:run. I did compile it correctly previously using the mvn clean install command.
Tomcat is saying to me INFO: Starting Coyote HTTP/1.1 on ...
0
votes
0answers
269 views
JSF2, PrimeFaces, Tomcat exception
I have a project witch was working until I was trying to clean up the code.
Now I get this errors:
Dec 28, 2012 1:27:03 AM org.apache.catalina.core.ApplicationContext log
INFO: No Spring ...
0
votes
1answer
133 views
JSF and Tomcat Possible Memory Leak
I get this warning when ever I restart or stop Tomcat.
SEVERE: The web application [/WebApp] created a ThreadLocal with key
of type [javax.faces.context.FacesContext$1] (value
...
1
vote
1answer
138 views
f:ajax not working on tomcat7/eclipse
I have this very simple code which works fine until I add a f:ajax tag.
Code that works:
<h:commandButton disabled="#{!feature.available}" class="featureButton"
value="#{feature.selected ...
0
votes
0answers
104 views
Tomcat 6 doesn't see beans in jar
After migration from JSF 1.2 to 2.1 tomcat doesn't see beans which are export to jar file. I export engine of application to jar for test and production server. If i copy class file to WEB-INF/clasess ...
0
votes
0answers
174 views
NoClassDefFoundError: Could not initialize class org.apache.myfaces.shared.util.StreamCharBuffer
I'm deploying a MyFaces app on Tomcat and am getting this error when requesting a page. Both myfaces-api-2.1.9.jar and myfaces-impl.2.1.9.jar are in the WEB-INF/lib folder of my app (my host prevents ...
4
votes
1answer
316 views
Connection interrupted using SSL with a JBoss AS7 (Richfaces page)
I've a strange problem. I'm using Richfaces 4 on a JBOSS AS7 webserver with HTTPS and client authentication.
Everything (client auth, HTTPS, etc.) works actually fine BUT sometimes style sheets and ...
0
votes
1answer
149 views
Tomcat / Java EE: Sessions cease unexpectedly
We are experiencing issues with sudden logouts. It came with a version switch, previous application ran JSF 1.2 while this one runs JSF 2.1. Since this was a major refactoring any specific code ...
1
vote
1answer
2k views
Exception could not find Factory: javax.faces.application.ApplicationFactory
I´m using JSF 2.0 Apache MyFaces, TomCat 7.0 and primefaces 3.4.1,
While running my app i got this exception
SEVERE: Exception sending context initialized event to listener instance of class ...
0
votes
1answer
74 views
Solr results differ when Webapp runs on different Server. Encoding issue?
i have the following situation:
I just moved a webapp i developed onto our production server and it seems, when i perform a search, the searchresults differ from what i get on my developmentserver, ...
1
vote
2answers
396 views
MyFaces tomcat7:run goal cannot start ProtocolHandler “http-bio-8080”
I created a new MyFaces Project with the maven archetype HelloWorld 2.0 OpenWebBeans
and tested it instantly with mvn clean -Dcontainer="tomcat7" tomcat7:run.
Everything goes well, until it comes to ...
0
votes
1answer
159 views
JSF 2.1.X validation behaves differently on Glassfish 3.1.2 vs. Tomcat 6 & 7
I'm experiencing what I think is odd behavior with the JSF validation between Tomcat and Glassfish. Previously we were using Tomcat, but now have requirements to run a full Java EE App Server.
...
0
votes
0answers
126 views
having form in index page inserting two values into db jsf
I have a single page index in my project. sometimes after submiting, the page inserts two values into database and displays the success message, at times it submits one value to the db but doesnt ...
2
votes
1answer
526 views
Access JSF2 Managed Bean from RESTful Web Service
I have an application scoped managed bean which contains a list read from the database. Whenever another application makes changes to the database, it should trigger the web service to update the list ...
1
vote
0answers
280 views
java.lang.NullPointerException at com.sun.faces.renderkit.RenderKitImpl.createResponseWriter
I'm developing a JSF 2 web application. I would like to use .jsf extension in URLs. I already asked a question about this and got an answer: set JSF file extension.
However, when I use the solution, ...
2
votes
1answer
230 views
Java Heap Space Error due to add function
Whenever I am calling the getFriendList function from the xhtml page I am getting an exception. The page keeps on loading and after that I stop the browser. I get the given stackstrace. Its is telling ...
0
votes
1answer
277 views
Error executing TommEE 1.0 with JSF 2.0
I'm trying use apache-tomee-1.0.0 with my JSF 2.0 web app... but I can't do it :(.
My problem is when I run the server logs this error:
30-ago-2012 18:49:39 org.apache.catalina.core.StandardContext ...
9
votes
2answers
910 views
CDI on Tomcat 7 - does it make sense?
If I can choose, I use JBoss 7 for a Java EE 6 project using JSF 2 and CDI.
But sometimes, the environment for a customer's project is more or less set - so in one case we are limited to Tomcat (6 or ...
1
vote
2answers
1k views
How to use .jsf extension in URLs?
I'm developing a JSF 2 web application. For prestige purpouses I would like that every URL ends with .jsf extension. Now it ends with .xhtml. If I change it directly to .jsf in web browser address ...
0
votes
2answers
378 views
EntityManager injection not working with Tomcat + OpenEJB
I'm using NetBeans IDE 7.1, Apache Tomcat 6.0.26, OpenEJB 3.0 and JSF 2.0. First I insert openejb.war into folder: Apache Tomcat 6.0.26\webapps. Looks like the Tomcat server works OK, because after ...
0
votes
1answer
144 views
Passing XML from JSF textarea to the Bean
I need to pass XML string from JSF textarea. The problem is that XML gets encoded and the I can not pass it into validation. My validation method looks like this:
public boolean validate(String data) ...
0
votes
1answer
52 views
Weird behaviour of links - there is URL appended to every link displayed on page
Here's the problem:
Take a look at: http://postimage.org/image/zclhvutfl/
The question is how to get rid of appending the urls to links?? They are appended to every link in application. I.e. there ...
1
vote
1answer
123 views
How can my WebApp Retrieve Data Set By a Tomcat Valve?
I'm trying to retrieve a value set by a custom Tomcat Valve in a JSF2 backing bean (or servlet). I can't see how to do this and I can't find any examples using Google.
BACKGROUND: In my JSF2 web ...
0
votes
1answer
805 views
No Factories configured for this Application
I am trying to run a JSF 2.0 webapp using Apache MyFaces 2.1.8 on a Tomcat 7 webserver.When i try to load a simple page i get this error:
java.lang.IllegalStateException: No Factories configured ...
1
vote
2answers
1k views
Component ID j_id?:name has already been found in the view.
i have error HTTP Status 500 in my project. i am using integration of jsf spring and hibernate. i have no idea to solve this problem.
i have added the necessary jar files.
the error is:
description ...
0
votes
1answer
79 views
why firefox file download is running inside Tomcat? [closed]
when i want to run my xhtml file, firefox file download is running inside Tomcat.
what shall i do? please help me. before this page, it worked well. but now firefox file download is running inside the ...
0
votes
2answers
1k views
JSF 2.0 app under Tomcat 6: “No Factories configured.”
I am trying to run a JSF 2.0 webapp using Apache MyFaces 2.1.7 on a Tomcat 6 webserver. The App uses Tomahawk 1.1.11 and expression language 2.2 (el-impl-2.2.jar). For that purpose I've put the ...
2
votes
0answers
206 views
Generic Interface causes javax.el.PropertyNotFoundException
I'm struggling with some error that occurs in some (environment) constellations.
- If I run my app on Tomcat in Eclipse-Webtools on WinXP it works.
- Running it in Tomcat on WinXP or Linux the error ...
0
votes
1answer
303 views
Apache tomhawk <t:inputFileUpload> tag not working
I am trying to upload a file using Apache tomhawk with JSF 2.0, but when I try to navigate to the corresponding view I am getting the following error:
javax.faces.view.facelets.TagAttributeException: ...
0
votes
2answers
818 views
tomcat restart => Could not find a SessionFactory [uuid=…,name=null]
Continue solving this situation, I've updated hibernate ond sqljdbc4 jars and the exception is changed now (please take a look bellow).
I'm using
Hibernate v4.1.4 FINAL
JSF 2.1 (mojarra)
all my ...
1
vote
1answer
1k views
gzip compression for jsf stuff
I have an jsf application (mojarra 2.1.8, primefaces 3.3) running on tomcat 6. While analyzing the page in firebug with google page-speed, I realized I could optimize some stuff by gzip-compression.
...
2
votes
1answer
187 views
control the expiration of session
sometimes after some minutes i have to refresh browser to get my web application with JSF work again, maybe it's a problem of web.xml
<session-config>
...
6
votes
2answers
2k views
Logout from web app using tomcat Basic authentication
I am using tomcat basic authentication for my web app:
I added following lines to web.xml in my web app:
<security-constraint>
<web-resource-collection>
...
1
vote
1answer
148 views
Sharing user role between tomcat and web-app
How can I programmatically know(in my web app) the username / password or just the user role of the user who is currently logged in tomcat(on which the app is deployed)?
0
votes
1answer
383 views
Programmatically upload a file to JSF webapplication
I have a JSF 2.0/primefaces web app on Tomcat 7.0.25. The application has a simple file upload form, as in the primefaces showcase.
<h:form enctype="multipart/form-data">
<p:messages ...
0
votes
1answer
211 views
JSF 2.0/Tomcat/ Apache Orchestra @InitView seems to be ignored when accessing Bean…Init function is not being executed
i have been trying for hours to solve this and can't figure out what the problem is. What i want to do is take a form input and persist it to a database. i've done this a million times the exact same ...
1
vote
1answer
55 views
errors on eclipse startup (WebDev + JBoss Tools + Tomcat)
i'm running into following errors everytime i start eclipse. If i move my project to a new workspace, everything works fine for the duration of one session - as soon as i open eclipse for the next ...




