Tagged Questions
0
votes
0answers
11 views
How to get the objects in the targetList of a rich:pickList?
I filled my rightList of the PickList with Objects from a web service, but when i select some elements, i want to get these elements in myManagedBean, because i'll affect them to an Object.
Any help ...
0
votes
0answers
22 views
How to stop a4j:ajax component in richfaces from reloading the complete default component?
I am developing application in richfaces 4.x . I am stuck while using the rich:select along with a4j:ajax .
Following is the code snipplet-
`
<rich:panel id="test" style="min-width: 604px; ...
0
votes
1answer
32 views
@EJB injection in a Custom UserdetailsService (implementing Spring Security UserDetailsService)
I'm using glassfish 3.1.2 in a JPA/EJB 3/JSF 2/Spring Security 3 in my application.
I want to write a custom UserdetailsService like this one:
import org.apache.log4j.Logger;
import ...
1
vote
1answer
25 views
Is it harmful to inject en EJB into a viewscoped Bean?
In my web application I have a presentation Layer consisting of several jsf-viewscoped and some requestscoped beans. Normally I only want to have presentation logic in these, so whenever there's a ...
-1
votes
0answers
33 views
Java EE project with JSF 2 can't support URL pattern *.jsf
I created a Java EE project with JSF 2, Hibernate and Spring and added all necessary jars.
When I put in the URL pattern *.jsf and run the application my home page is empty and the JSF components ...
0
votes
0answers
41 views
JSF2 error when deploying to Glassfish Application Server from Eclipse
Hi guys I am trying to run my jsf2 application, everything works fine with Tomcat but when I try to run it through Glassfish it throws this error:
Publishing failed cannot Deploy JsfProject ...
0
votes
0answers
36 views
Checking for messages existence
I use a method like this for sending error messages to my facelet:
public static void addErrorMessage(String msg) {
FacesMessage facesMsg = new FacesMessage(FacesMessage.SEVERITY_ERROR, msg, ...
0
votes
1answer
47 views
primefaces calender: how to set dynamically mindate
I have two primefaces calender controls.I want that when I select a date from the first calender then next calender mindate should be start from 1st calender's selected date.For instance, I have ...
0
votes
0answers
53 views
Primefaces p:schedule component not loading any data?
I'm having a problem when using the p:schedule component. Well the View containing the p:schedule is working, but all i'm getting is a blank schedule without any data from my database, here is my ...
0
votes
1answer
58 views
custom login page with spring security and JSF Pimefaces
I want to include a custom login page with spring security and JSF Pimefaces. My custom login page is designed with Primefaces.My problem is that the login page is not displayed with primefaces ...
0
votes
1answer
58 views
How to view Office files in Primefaces?
i want to create a component to view pdf,office files and images
and i was wondering if it's possible to customize primefaces media component to view images and office files, if that's not possible ...
0
votes
0answers
35 views
commandlink with target=“_blank” destroys the viewAccessscope in jsf (richfaces)
I added a help mechanismus with the following mechanismus. I open a help pdf, the view scope is destroyed. How can i prevent it?
@ViewAccessScoped
public class GemOrder
<h:commandLink ...
2
votes
1answer
41 views
High session memory usage in Mojarra
I have a web application build on Mojarra (JSF 2). The application is deployed on WebSphere 7. The session usage for my application is very high. I use view scoped beans and some of the pages are ...
0
votes
1answer
55 views
Executing Cmd command in JSF
i want to compile an input text and create the .exe file using a managed bean and a page .xhtml . However the Creation of file went Ok and the creation of .exe dosn't work
here is the managed bean ...
0
votes
0answers
36 views
Error trying to build a JAVA EE application
I'm developement a web app using JAVA EE, JSF 2, Springs 3, RichFaces 4, Hibernate 3 and Netbeans. I've been developing this aplication for the last three months, and I always used the netbeans ...
1
vote
0answers
40 views
Facelets template not found in a common jar in an exploded deployment
Here is my Facelet template location : WAR/WEB-INF/lib/common.jar/META-INF/resources/m0/template.xhtml.
It throws the following exception when the war, and the jar in it, are deployed as exploded ...
1
vote
2answers
87 views
Bean Validation - Multiple Regex @Pattern's for 1 Field?
I was attempted to apply multiple @Pattern annotations to a single field:
@Pattern(regexp = "(?=.*[0-9])", message = "Password must contain one digit.")
@Pattern(regexp = "(?=.*[a-z])", message = ...
-1
votes
0answers
52 views
JSF 2 Web Application with Multiple Urls(Clients) Access, Each with single css
So I have to design a single web app (JSF2.1, JBoss 7) which allows multiple access from clients each with its own url(domain name) so that i can apply a specific css, logos... Any Idea !!
I know I ...
0
votes
1answer
42 views
Why isn't my command button working?
I'm using primefaces 3.5, Glassfish 3.1.2, and Java EE. I'm trying to create a page that creates a "question" in a table. I have a data table that contains the "answers" that are for the user to ...
0
votes
2answers
87 views
What is wrong with my implementation of a method to add row to a primefaces datatable?
I'm using JavaServer Faces 2.0, and Primefaces 3.5 and am running this on a Glassfish 3.1.2. I have a data table on a page that is used to allow a user to create a trivia question, set its properties, ...
0
votes
1answer
70 views
Static image not available by docroot on Glassfish 3.1.2
I'm trying to use an external folder to store the images for my Java EE 6 project. I'm using Glassfish 3.1.2. I created the the sun-web.xml I found from this post:
Glassfish 3 - Loading images from a ...
0
votes
0answers
33 views
Method call from an EL fails if method exists with different signatures - JSF2
I have a backing-bean containing a few methods that share the same names but have different signatures, e.g.:
public void voteUp( Member member, ObjectA object ) { ... }
public void voteUp( Member ...
0
votes
1answer
88 views
Primefaces components doesn't work in websphere 8.5
i am using IBM RAD 8.5.1 to create a JSF 2 project and run it on websphere 8.5
i used the File > New > Web Project Wizard
,and i added the JSF & Primefaces as follows:
Java Build Path > Add ...
0
votes
0answers
39 views
PrimeFaces p:orderList isn't getting processed correctly?
I have an orderList like this:
<h:form id="priority_form">
<p:orderList id="priority_list" value="#{priorities.priorities}"
var="priority" itemValue="#{priority}" ...
1
vote
1answer
209 views
Primefaces DataTable - deleting with dialog deletes wrong entry
I have a table in a form. One of the columns in the table displays a row of buttons to edit and delete the table entries. When I delete an entry callign the controller from a button's action ...
2
votes
1answer
67 views
How does the FacesServlet know which facelet to render based on the URL?
I've been checking around and can't find an explanation of how the FacesServlet resolves a URL to a real file in the web app file structure. Within the context of servlets, my understanding is that a ...
0
votes
0answers
57 views
SessionListener and Application Context conflict
this is my session handler class ;
public class Sessionlistener implements HttpSessionListener{
@ManagedProperty(value="#{sessionCount}")
private SessionInfo info;
@Override public ...
0
votes
1answer
108 views
JSF/Primefaces SelectedOneRadio: value is null
I have a Primefaces' SelectOneRadio that extend standard SelectOneRadio.
My problem is that when I select the option that I want download this or not saved or is lost. I enclose the code. Why does ...
0
votes
1answer
65 views
WELD-000315 Failed to acquire conversation lock
I'm creating a JSF 2 application using PrimeFaces 3.4.2 and CDI on JBoss EAP 6. The application has a section that uses a long running conversation for 3 pages. When the user navigates to the first ...
0
votes
1answer
306 views
How to set UserBean when using JSF 2.0, CDI, EJB 3.1 Servlet Spec 3.0 Programmatic Security
This question is a follow up to here.
Upon login, my app needs to consult the container for authentication using request.login() and then set a "User" bean, which contains username, password, role, ...
0
votes
1answer
53 views
Redirect in Interceptor when not logged
Im trying to use @aroundInvoke in my interceptor, checking some validationX to proceed with the execution of the method or else REDIRECT the user to a specific JSF page.
@AroundInvoke
public Object ...
1
vote
0answers
77 views
No library found for namespace when trying to add a new tag
I am trying to add a new/custom tag in my xhtml file as I want to replicate "<%@ taglib uri="http://ckeditor.com" prefix="ckeditor" %>" in xhtml.
But I get an error saying no library found for ...
0
votes
1answer
89 views
Get List of All Managed Beans in JSF at runtime
I'd like to get a list of all managed beans in a JSF application. In Spring, I can do something like context.getBeansOfType(). Is there a corresponding method in JSF?
I have a number of ...
0
votes
2answers
169 views
How to use CDI qualifiers with multiple class implementations?
I'm new in Java EE/JSF and now read about CDI qualifiers - the possibility to change class implementation. This is great but I have got one question. As far as I understand I can change class ...
0
votes
1answer
32 views
Configure argument class to use on development/production
I've got class which should have different argument value on development and production mode. As far as I know I can use facesconfig.xml to pass params to ManagedBeans but I use annotations instead of ...
0
votes
0answers
72 views
Difference between RequestScoped/SessionScoped in javax.faces.bean and javax.enterprise.context
Here @partlov added comment that we can use RequestScoped/SessionScoped from two packages - javax.faces.bean and javax.enterprise.context. I'm new in JSF/Java EE and I don't know the dfference. I use ...
0
votes
1answer
62 views
<h:messages> on multiple IDs or parent id
I was just wondering if there is a way to display multiple errors/warnings with <h:message> oder <h:messages>.
For example, take a PanelGroup with various inputs:
<h:panelGroup ...
0
votes
3answers
166 views
selectonemenu is not updating from another selectonemenu using<p:ajax > primefaces
I am trying to update selectonemenu by selecting some value from other selectonemenu.i am using<p:ajax update=":main:deviceosName" listener="#deviceRegistration.updateOSName}" />
But the ...
3
votes
2answers
228 views
JSF2.0 annotation @ManagedBean not work
I try write my first JSF2.0 project (with using EJB3.1). I don't understand why my @ManagedBean annotation not work.
I always get an error, when I run application on Glassfish v3
exception
...
0
votes
1answer
283 views
JSF + JPA (PrimeFaces Wizard component)
I'm studying/training JSP and decided to add a persistence to the PrimeFaces Wizard component (http://www.primefaces.org/showcase/ui/wizard.jsf).
I got a NullPointerException when submitting the save ...
2
votes
2answers
74 views
How to fade a message out after a timeout
I have a simple login page that displays a message if the login was not successful. I would like this message to fade out after 5 seconds, but I can't get it to work.
The login part (removed most of ...
0
votes
1answer
145 views
Getting rich autocomplete value
I´m trying to implement a richfaces dataTable.
Each row has a richfaces calendar, two richfaces autocomplete, and 3 input texts.
I have a command button in another form.
When I enter some values in a ...
6
votes
3answers
474 views
Creating session explicitly in requestScoped bean in JSF 2
I have a doubt here about creating session in requestScoped bean in JSF 2.x. I understand that we need not create session in JSF 2.x since we can directly use a sessionScoped bean to put the user ...
1
vote
1answer
73 views
How use debug in Eclipse correctly?
I know this could sound as a 'very easy' question, but I really don't understand or found anywhere, how to use the debugger in a Java EE (JSF) application correctly.
I mean:
1. open eclipse
2. insert ...
-1
votes
2answers
147 views
JAX-RS and JSF. Are they compatible or competing technologies [closed]
I am unsure if JSF2.0 is compatible with JAX-RS. I have been following some JBoss quickstart tutorials. One in particular is the greeter tutorial where they use JSF and expression language to send ...
0
votes
0answers
108 views
How to handle request url parameters in JSF [closed]
I'm writing a JavaEE6 / JSF2 app. Customers can purchase products and as such I am using a credit card payment provider (Payment Express / DPS).
Once a customer has completed their payment, they are ...
1
vote
1answer
24 views
Replace Image with out user noticing
I'm using JSF 2.1.7 + Prime Faces + Prime Faces Mobile.
I have a page that references a image:
<img src="/charts/chart1.png"/>
There's a separate background process that runs to update ...
0
votes
2answers
100 views
Apache in front of JSF
In Jboss AS 7:
Putting Apache in front of Jboss with this works fine:
ProxyPass / http://localhost:8080
ProxyPassReverse / http://localhost:8080
So app is accessed by domain.com/app.
Problem ...
-1
votes
1answer
80 views
Comment to a status is not working
When I am loading the page for the first time everything is working fine, I am having no exception.Status updates are shown with their corresponding comments but whenever I try to comment on status by ...
0
votes
1answer
114 views
status update not working
When I am clicking the Speak Out(p:commandButton) to submit a status, I am getting the following exception. The exception is caused by commentList() function by the line
Query query = em.createQuery(
...





