0
votes
1answer
28 views

Caused by: javax.naming.NameNotFoundException - Name [Class/object] is not bound in this Context

have a problem that am dealing with since 6 hours but don't get to solve it. Am developping a Dynamic web project using JSF/Tomcat 7/ Maven/Java 7 Everytime I run the project on the server I get ...
0
votes
1answer
19 views

Start webapp (EJB3+JSF2) with method from bean instead of page

I'm pretty new to EJB + JSF and I'd like that my webapp's entry point would be a method of a bean instead of a view. I mean, when someone types www.mypage.com I'd like it to go to a method of a bean ...
0
votes
1answer
28 views

Retreive initial data from EJB in View Scoped JSF Managed Bean

It seems that an EJB(stateless) cannot be injected into a View Scoped JSF Managed Bean. Doing so gives a com.sun.faces.mgbean.ManagedBeanCreationException: ...
0
votes
1answer
24 views

Unable to resolve org.eclipse.persistence.exceptions.EntityManagerSetupException

I am trying to run the maven project, i am able to deploy the project but after deploying the project when i click any function to perform an operation it shows following exception: root cause: ...
0
votes
1answer
56 views

Issue with an EJB Facade injection in a JSF Managed Bean [closed]

I am a newbie, working with java/ejb3/jpa2/jsf2 and Glassfish/netbeans7.2. I generate with Netbeans in auto mode my entities Beans and my facade Beans from my MYSQL DB. I injected my Facade Beans in ...
0
votes
1answer
46 views

No active contexts for scope in EJB service

I have EJB bean and there is a class RemoveInactiveUsersTask extends TimerTask when I invoke method which update user status in DB. This is sample code of my class: @Singleton @Named ...
0
votes
0answers
18 views

looking to create pluggable Java Server Faces web application similar to Rails Plugins

I am planning to create an product in that basic functionalities should be an open source version and certain module should be closed source. If product emerges with success then I will create an ...
0
votes
0answers
60 views

An error occurred performing resource injection on managed bean conference - Java EE

I am attempting to read a value of a database table and I keep getting an An error occurred performing resource injection on managed bean conference error. I'm using Glassfish, JFS & Primefaces ...
0
votes
0answers
32 views

Display particular data record using JSF <h:commandLink>

I have a list of books which are stored in database. when i click any one record to see the details of that book, it displays all the book details stored in database. Following figures shows more ...
-2
votes
2answers
46 views

Database Communication in JSF/EJB (theoretically) [closed]

I'm currently writing my diploma thesis and I'm stuck at the Database Communication topic. My problem is not the implementation, but rather the architecture behind JSF. I read a lot about it, but ...
0
votes
0answers
28 views

No datasource connection: Unknown service requested: ConnectionProvider(Hibernate)

I have a project EJB/JPA with Hibernate on Glassfish and I can not establish a connection to the datasource that I have properly configured(ping succeeded!) on glassfish. When my application tries to ...
0
votes
1answer
70 views

JSF Connection to EJB SOAP Web Service

I am trying to connect the managed bean of the JSF application to the EJB deployed as the SOAP web service. I have an EJB which implements SEI and methods exposed. The ejb-jar is deployed separately ...
0
votes
0answers
32 views

How to add controllers to deployed JavaEE application on server

I'm trying to write specific Java application, leaning on MVC pattern. The idea is that I have controller, that creates new views and specific controllers (not CRUD) for them in working application. ...
0
votes
1answer
55 views

Accessing ManagedBean method from EJB

I have an EJB that handles creation of customer user accounts that needs access to a managed bean (account scoped) which manages user verification keys for user accounts (the keys are transient, so ...
0
votes
1answer
41 views

Is there a way to inject an EJB into a custom Resource Bundle

I'm trying to build a resource bundle that get its messages from a database, rather than a properties file. I did some tests extending ResourceBundle, ResourceBundle.Control and ListResourceBundle, ...
0
votes
0answers
66 views

sorting primefaces treeTable from recursive table in database

I'm using primefaces 3.4.2 and I want to load in a tree table a recursive table from my database. How can I do this? My recursive entity : `@Entity public class Application implements Serializable { ...
0
votes
0answers
185 views

updating rowediting datatable of primefaces and saving it in the database

I'm using prime faces 3.4.2 and I'm trying to update an entity that contains a list of another object, using a row editing datatable. My problem is that when I validate the change , the simple ...
0
votes
1answer
111 views

JSF converter scope when using CDI (Seam 3) view-scoped

I'm currently reviewing code and found CDI converters like: @Named @RequestScoped public class BankConverter implements Converter, Serializable { @EJB private BankService bankService; ...
0
votes
1answer
158 views

My first project EJB 3.0 / JSF 2.0 with Eclipse. How to test it?

I'm trying to create my first project EJB3 with JSF 2.0 & Eclipse. My first project is roughly a Hello World Project. I have an EJB interface, a bean that implements the methods and JSF ...
0
votes
1answer
89 views

Stateless CDI Managed bean

I cant find a bean in JNDI on my jboss when I deploy a WAR file that has jsf 2.2 I get the following exception. Anyone know why this is happening? (the bean is in JNDI, I see that Jboss binds it and I ...
2
votes
1answer
80 views

Passing additional parameters from JSF to EJB

In my Java EE 6 application (Weblogic 12c, EJB 3.1, JSF 2) I need to know in EJB who called the method. But the caller's login obtained from context.getCallerPrincipal().getName() is not enough ...
3
votes
2answers
231 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
3answers
274 views

How to inject a CDI Bean in a ManagedBean?

I want to inject a CDI Bean in a ManagedBean either with the annotation @Inject or @Produce. The CDI Bean which I use is: @Named @Startup @ApplicationScoped public class BaseBean { private ...
3
votes
1answer
107 views

How to avoid duplicated DB content when persisting EJB entities created by a JSF component converter?

I have a custom JSF input component, named inputPeriod, which is designed to input date-periods. Each period has a from and to date. The functionality of the component is achieved with Javascript, ...
0
votes
1answer
89 views

Cannot get selectManyCheckbox rendered in JSF application

My problem is that I cannot render the h:selectManyCheckbox component in a simple Jsf application. Although h:selectBooleanCheckbox and h:commandButton appear normally on the output, the ...
0
votes
0answers
52 views

login with selectOnemenu Item

I'm creating a web app in java ee6,but at the login page I want the users to login with a selected profile like admin,staff, e.t.c from the selectOnemenu item. How can this be possible when the ...
0
votes
1answer
127 views

EJB Schedule task with access to JSF Managed Beans

I have a feeling I'm mixing EJB and JSF managed bean responsibilities, but what I want is a scheduled task EJB (@Singleton with @Schedule) that has access to my JSF application scoped beans. ...
0
votes
0answers
58 views

EJB converter and lost bean injection

I have an application written in Java EE with EJB and JSF. I wanted to create a JSF converter which has an EJB injected: @ManagedBean(name="addressConverter") @RequestScoped public class ...
0
votes
1answer
82 views

how to merge a shop entity to a client entity (many to one) in jsf

I'm trying to merge an existing shop to a new client in jsf but it isn't successful. The program consists basically off a backing bean controller,an ejb and the jsf page (register) I have been able to ...
0
votes
1answer
226 views

JSF View Scoped Bean Reconstructed Multiple Times

I thought @ViewScoped was supposed to prevent the bean from being reconstructed while the user is on the same page... So why is my @ViewScoped JSf controller bean being created multiple times even ...
0
votes
0answers
67 views

Ejb action event update

I have two pages, one page has a command button (page 1)with a backed action event that update the database. The other page has a data table that display the value of that database.(page 2) When I ...
1
vote
2answers
130 views

Stateful EJB does not keep property value

I am using a stateful EJB for keeping my login information: @Stateful public class SecurityService { private static final Logger log4jLogger = Logger.getLogger(SecurityService.class); ...
0
votes
1answer
151 views

Displaying two queries result i JSF

I'm trying to add some features to project which I find. There was query which selects specified results. Now I'm trying to get second query's results. Here's my code: Car.java @Entity ...
0
votes
1answer
118 views

NotSerializableException: com.sun.ejb.containers.EJBLocalObjectInvocationHandlerDelegate

im using Hazelcast HttpSession Clustering with two Glassfish 3.1.2.2 instance. Im using @EJB or @Inject annotation to inject EJB(s) in managed beans. In @ViewScoped and @SessionScoped managed beans, ...
1
vote
2answers
269 views

Rollback transaction inside managed bean

I would like to rollback transaction not inside EJB but inside JSF managed bean. Inside EJB we can use SessionContext.setRollBackOnly() but what can I use in managed bean ? @Stateless ...
2
votes
2answers
90 views

Purpose of CDI technology in Java EE and its relation to UI technologies like JSF and back end technologies like EJB

This question directly follows from another question of mine here. The last paragraph of the answer to that question mentions CDI technology. Can you explain what is the purpose of that technology. ...
2
votes
1answer
254 views

Injection of a stateless EJB into JSFmanaged bean causes NullPointer ex in WAS 8.5

A Java EE 6 Project using JSF 2.x mojarra implementation (both 2.0 and 2.1 tested) where session beans are injected via @EJB annotations into JSF managed beans fails in Websphere Application Server ...
1
vote
2answers
189 views

Why not just use CDI backed bean (instead of SFSB) to hold Session information?

Context Simple Java EE 6 (JBoss AS 7.1) CRUD Web App, Using a @Named backing bean, @SessionScope of JSF pages: Question Why would be a bad idea to store the HTTP session stateon the CDI bean? For ...
0
votes
0answers
120 views

@Singleton annotation not supported in EJB

I am creating a JSF web project which has an EJB as the managed bean. I am running the project on Apache Tomcat server. But I have to make one of the EJB classes a singleton. I am trying to use the ...
3
votes
1answer
173 views

How Two different Maven Web project can share same EJB

I have two different Maven-Based JSF Web Projects (Netbeans and Glassfish) one for admin users and the other one is for regular users. I wanted to keep them separate because it is simpler this way. ...
0
votes
2answers
238 views

MethodNotFoundException in command button action

I'm having a problem here, when i've started work with JSF and JPA. I can't make a jsf "request" using a commandButton to a method in my EJB. Let me show the code: //.xhtml page <?xml ...
0
votes
0answers
66 views

Loading HTML and sending email in EJB

I've found some similar (or exactly the same?) questions about loading files in EJB. But I'm curious is it even right choice or not. I'm going to send a email to client (say password recovery html ...
1
vote
1answer
142 views

Multi user web application

I know this question was asked a lot, but I didn`t find anything that could help me. I`m using Java, JSF, EJB, JPA, GlassFish, MySQL. I developed web sites with autentification, using these ...
0
votes
3answers
761 views

Using EJB injection in a POJO

I know that injection using the @EJB annotation is only possible in an EJB class, a servlet, or a JSF managed bean, but in the same time I need to have an instance of a some injected business ...
0
votes
1answer
265 views

Generate primefaces ajax tree on demand?

I have a project using JSF primefaces and EJB managed Beans with hibernate storage. http://www.primefaces.org/showcase/ui/treeAjax.jsf Question: I keep on getting a out of memory or stack overflow ...
0
votes
1answer
172 views

Injecting EJB3 / CDI / JSF beans in console application for testing / experimentation purposes

Is there any way to inject EJB3 / CDI / JSF beans (if the last category makes any sense) and use the respective annotations without having to use a Java EE container? I.e. in a plain old static void ...
2
votes
1answer
289 views

JSF / EJB3 avoiding lazy initialization exceptions in the view layer

I have the following JSF/PrimeFaces EJB architecture: [JSF/PrimeFaces xhtml view] --> [@ManagedBean JSF bean] --> [@Stateless EJB3 bean] --JPA--> [DB] That is, the JSF views display entities and ...
1
vote
1answer
265 views

ApplicationScoped Bean with postconstruct method

I have an application scoped bean to hold the information in my database. After its instantiation it should fetch the data, so I annotated the method with @PostConstruct. As soon as I request the jsf ...
0
votes
1answer
193 views

ApplicationScoped Bean or Singleton for Database representation?

I have information stored in a database (actually a content repository but this shouldn't matter) which should be presented to all users. Currently I have a Singleton Bean which fetches this ...
1
vote
2answers
117 views

CDI and EJB, security issues?

I am reviewing my code from since I picked up on JSF. One of the most complex issues has come up once again. The decision between CDI and EJB. I am using three layers and I wonder which type of ...

1 2 3 4