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
vote
1answer
34 views

Which Primeface component to use?

I have a requirement where I have to display & enter 24 hour values for a particular job. For a particular business there could be 100's of jobs. So basically 100 rows with 24 input fields. I ...
0
votes
0answers
26 views

Passing parameter in EL action doesn't work with RequestScoped bean

Edit: using JSF scopes now and JSF managedbean instead of CDI as it doesn't work with CDI beans regardless of RequestScoped, ConversationScoped or SessionScoped. I'm trying to pass a parameter to a ...
1
vote
1answer
86 views

Spring Security:redirection to a specific page based on roles in JSF

I work with JSF and Spring Security. I use a custom login page. I have two roles : Administrator and User. My question is how to redirect to different pages for different roles. For example if the ...
-1
votes
0answers
49 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
35 views

How to work with new Entity Object without setting Id before persisting?

When I choose "new price" from the p:selectOneMenu I get a validation error "value is not valid". This stops when I set an id for the new price in bugBean.generateNewPrice() manually. Even an ...
1
vote
1answer
41 views

How to edit several database entries efficiently from JSF web application?

I have several database tables that the user should be able to add, edit and remove entries from the web application. Also the input must be validated before persisting it. Now I could simply make a ...
0
votes
0answers
38 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}" ...
3
votes
2answers
111 views

External facelets template - does it get cached?

Due to a given requirement to show a header from an external source, we came up with the following setup (using JEE6 on Tomcat 7): Our pages use a template regularly: ... <ui:composition ... ...
1
vote
2answers
81 views

primefaces lineChart - continuous line, without dots

how to remove the dots from primefaces lineChart and draw the chart as continuous line? Thanks
0
votes
5answers
209 views

Initialization of List in a JSF Managed bean

I' have a question about initialization of List in the POJO as it follows the next code: public class Person { //other fields... private List<String> friends=new ArrayList<>(); ...
0
votes
1answer
235 views

Could not find backup for factory javax.faces.application.ApplicationFactory

I'm currently working on the following stack: jboss7.1.3, javaee-api and jsf 2.1.19. And can't get around this error: Unexpected exception when attempting to tear down the Mojarra runtime: ...
0
votes
2answers
62 views

is possible, in a cdi interceptor, after a validation, redirect the user to another page/method/action (jsf2) and send a message?

the idea is something like this: @PSEUDO_CODE @AroundInvoke public Object manage(InvocationContext ic) throws Exception { Object object = getTarget(); ... if( ...
0
votes
1answer
58 views

JBoss7.1.3 servlet-name in web.config produced ClassNotFoundException: javax.faces.webapp.FacesServlet

I'm trying to create a javaee6 ear application in jboss7.1.3 using javaee6-api, jsf-api-2.1.19 and unfortunately I can't get around this issue, whenever I specified <servlet> ...
0
votes
2answers
412 views

JSF 2 Captcha using <h:graphicImage rendering twice for Servlet generated image value working only for Chrome

I have an issue in my application using where I have a Captcha component built as a JSF Custom Tag: in my JavaEE 6 webapp I use: JSF 2.1 + Jboss Richfaces 4.2.3 + EJB 3.1 + JPA 2.0 + PrettyFaces ...
0
votes
1answer
294 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
104 views

NotSerializableException on ViewScoped ManagedBean with CDI Injected properties

I'm trying to create a scalable JSF application. I would like to save view states on client side but I have troubles with ViewScoped ManagedBean with CDI Injected attributes. SomeService.java : ...
0
votes
0answers
102 views

JBoss AS 7.1 JAAS loses user role if a user object is updated with EntityManager

Using JAAS in Jboss AS 7.1 (picketbox) to authenticate members. It all works fine except that there is a very annoying reference problem: the security realm in use, (jboss as 7.1 standalone.xml) ...
1
vote
1answer
168 views

JSF2.0 - Composite component with optional method expression

I'm implementing a composite component and I found a issue which I didn't find a solution. I specified its attributes that can or not be passed by the page author, but I couldn't specify a method ...
0
votes
0answers
65 views

Implementing a client web login under Restful architecture

I am building a web application using a restful style architecture in JBoss. Below I have included some html which represents the login form. A post request is generated from this form. After this, I ...
0
votes
0answers
91 views

Http GET request link from inside a primefaces datatable

I have a share link (Tweeter) for each row in my datatable. I placed the h:outputLink inside a p:overlayPanel for the column. This link works, but the GET opens in a new browser tab. This is not the ...
4
votes
1answer
118 views

Java EE 6 security and redirection

I have a Java EE 6 web application running on JBoss 7.1.1 that has some pages that require authentication and many that do not. For the authenticated pages, I am using Servlet 3.0 Programmatic ...
0
votes
1answer
86 views

How to correctly export a JSF 2.0 web application into war?

I have a JSF 2.0 web project and I use Glassfish 3.1.2 server. In this project, I have among other things : a class called AjaxServlet annotated with @javax.servlet.annotation.WebServlet a class ...
5
votes
2answers
331 views

@PreDestroy not called after session expired

This is a JSF 2 app running on WAS8.0. Here is the code for the "backing" bean of one page. @Named("mySessionBean") @SessionScoped @Stateful @LocalBean @StatefulTimeout(unit = ...
0
votes
1answer
108 views

Highlighting commandbutton jsf 2.1 when pressed

I am using JSF 2.1 to code a web application. I would like to use 2 buttons to take me to two different views passing a param. But by default I have one button "pressed" and therefore it should be ...
0
votes
1answer
202 views

javax.faces.ViewState lost on p:commandButton action

I have a simple login form that calls an action which if login is successful returns the view id of the secured area. I would like to use ajax for the action but when the page gets redirected ...
0
votes
2answers
184 views

Example for CDI-SessionScoped LogIn with TomEE

i'm currently fighting with TomEE, JSF and CDI (i think). Is there any example out there which has "@javax.enterprise.context.SessionScoped" annotation using TomEE 1.5.1 (or current snapshot)? I ...
0
votes
0answers
161 views

Glassfish Server Session invalidate

I have deployed my web application on Glashfish 3.2.1. I have set the session timeout to be 30 minutes in the web.xml. My application has a login page and once this user is authenticated(password ...
1
vote
1answer
255 views

Redirect after Realm authentication on Glassfish

I'm currently running a JPA/EJB/JSF application on Glassfish and using the security JDBC realm for authentication. The realm works pretty well, fulfilling the requirements, until the customer asked ...
0
votes
1answer
73 views

How to ensure an active conversation in JSF2?

We have a JSF2 based web application which models a purchase process, where the user enters and selects different information in a wizard-like manor, can navigate forward and backward and at some ...
0
votes
0answers
58 views

Java ee6 security issues

Hi all I'm implementing Java ee6 application with web client in glassfish 3.1.2 server. In web users are going to authenticated through JAAS glass fish JDBC realm. Application has certian degree of ...
0
votes
0answers
157 views

using jdbc realm with encrypted jpa entities login form

My question is regarding JPA entities and the JDBC realm. I'm creating a project in which some of my entities included my user entity are encrypted by my own program. This is done in order to holding ...
0
votes
0answers
54 views

t:jscookMenu current item

I'm using t:jscookMenu in my JSF 2 application. I managed to make a functional menu so far, but how would I highlight the currently selected menu item for each page? I'm not bound to Tomahawk, so if ...
1
vote
1answer
360 views

AJAX render attribute doesn't work with rendered=“false” component

I have a component that I want to show/hide after user hits a commandButton. It's like this: <h:commandButton id="showButton" value="#{bean.wasPressed ? 'Hide' : 'Show'}"> <f:ajax ...
0
votes
0answers
89 views

How can I display user a Save As dialogue in JSF2?

I have already seen this and using this infact but it's not working for me. There is no error but nothing happens. I basically need to show this Save As Dialogue where your can specify a location ...
2
votes
0answers
146 views

a4j:poll calls the value methods of every ui:repeat on the page

i have an a4j:poll in my pageTemplate that just rerenders a an Area that displays the number of unread messages a user has. Problem is, that every value-Method of an ui:repeat on the page is called. ...
0
votes
0answers
80 views

NoSuchMethodError not found web service

When i press a button action (jsf or prime button) my web service throws this: ...
0
votes
1answer
241 views

holding variables in session scope without making them static?

This is a rookie question, sorry. I developed a jsf-2 app (on Tomcat) which has a big controller bean declared in session scope. Now, the mistake I made was to put all session scoped variables in ...
0
votes
1answer
220 views

ViewMapListener JSF not being called

I'm trying to port the JSF @ViewScoped annotation to CDI. The reason is more educational rather than based on need. I chose this particular scope mainly due to the lack of a better concrete example of ...
1
vote
3answers
1k views

JSF View scope in Spring 3.0

Is there anything like View scope in Spring 3.0? Actually I have a application (using JSF+Spring) whose beans are managed by spring.So I want to destroy these beans on navigation.But I didn't found ...
0
votes
1answer
888 views

How to deploy a JSF 2.1 webapp in Oracle Weblogic 12.1?

I am trying to deploy a JSF 2.1 webapplication to a Weblogic 12.1 application server, but the deployment fails with the following exception <javax.enterprise.resource.webcontainer.jsf.config> ...
1
vote
1answer
171 views

What do you need for the CDI capability in a JSF Project?

I have a JSF project targeted on WebSphere Application Server 8 and I tried to use the CDI concept. I have a /WEB-INF/beans.xml like: <?xml version="1.0" encoding="UTF-8"?> <beans ...
2
votes
1answer
144 views

When exactly does the value conversion happen in JSF?

I have consulted several authoritative sources, but either they really contradict each other or I have misunderstood them, or maybe there are more than one conversion taking place? Are there ...
1
vote
2answers
452 views

Shiro annotation not working on JavaEE6 project

Question: Where is the implementation for JavaEE6? I'm currently working on a JavaEE6 project and I found out that Shiro's annotation is not working out of the box even though I already configured ...
1
vote
2answers
202 views

Can a JSF Page level permission be set using Shiro

I'm just wondering if we have a page level permission settings in Shiro? For example I have a jsf page that I only want to show in user with role staff and permission delete. In JBoss we have ...
0
votes
2answers
122 views

Infrequent NoSuchEJBException: EJB has been removed after session timeout, browser refresh

I have a facelet that refreshes the browser window 30 seconds after session timeout e.g. <a4j:region> <h:form> <a4j:poll id="poll" interval="#{(session.maxInactiveInterval + 30)*1000}" ...
1
vote
3answers
910 views

JSF - Keep Faces Messages after redirect from @PostConstruct

I have page1 with button that navigates to page2, page 2 add some messages and navigates back to page1. I want display those messages on page1. I've tried many solutions, but nothing work. Sample ...
1
vote
1answer
276 views

JSF outputScript and JavaScrips not parsed by EL? [duplicate]

*Possible Duplicate: The solution to this post is not feasible in this case, re-open this post please! * JSF bean property not evaluated in external JavaScript file The EL parser do not ...
1
vote
1answer
245 views

Include of external content in XHTML

Usually we use Facelet's templating mechanism to include the same header on each page. But in the current project, the content of said header is provided from another server. Is there a way to include ...
0
votes
2answers
194 views

EJB3 / JSF2: Design of JSF2 app with ConversationalScope and Stateful EJB

My use case is as follows: Managing orders with order lines, a customer and payment details. The app consists of an order list view from which an order detail view can be opened for editing an ...

1 2 3 4