0
votes
0answers
14 views

ejb lookup issue | Java

I have an ear which contains ejb-jar(lets call it A.jar) and there is another ejb-jar(lets call it B.jar) deployed on the server. server | | |---B.jar | |---ear | | | | | |--A.jar | | ...
1
vote
1answer
27 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 ...
0
votes
1answer
41 views

How can a singleton Java EE bean obtain a reference to itself?

I have a singleton bean for which the @PostConstruct method needs to call an @Asynchronous method within itself. It cannot do so directly using this because that makes the call synchronous. I cannot ...
0
votes
1answer
31 views

Cannot Cancel @Asynchronous call to EJB

What am I doing wrong in this simplest of examples? (Glassfish 4.0-b87 + Eclipse Kepler m6) Myself.java package com.example.cancelbug; import java.util.concurrent.ExecutionException; import ...
0
votes
1answer
37 views

Cannot use dependency jboss-javaee-6.0 in my Maven project

I have set up a maven project with JBoss 7.1.1 and I want to use JavaEE libraries. In the root pom.xml I have set: <repositories> <repository> <id>jboss</id> ...
0
votes
0answers
49 views

Call to JPA (OpenJPA) within remote EJB fails the first time after deploy of application

I'm having a strange problem in our EJBs that are running on a Glassfish 3.1 using OpenJPA. Firste there's our Enterprise-Application 'businessBeans' that handles all the JPA/Entity-Stuff. It offers ...
0
votes
3answers
84 views

JEE6 EJB tutorial : why not using @Singleton instead of @Stateless

I looking at one EJB sample from the JEE6 tutorial. In This example, I want to know if I could just use @Singleton instead of @Stateless ? package converter.ejb; import java.math.BigDecimal; import ...
1
vote
1answer
56 views

how to call session bean method with a certain role when calling from an MDB?

My Session bean has several methods defined. Some can be accessed by ADMIN role only, others can also be accessed by USER role. @Stateless @DenyAll public class MyBean { ... ...
0
votes
0answers
124 views

Why transaction can't commit in a self-invoked ejb method with @REQUIRES_NEW Annotation

First I want to explain my self-invoked ejb method in this situation. I have a stateful session bean with a method which starts a new transaction (Annotated by @REQUIRES_NEW). To invoke this method ...
1
vote
1answer
70 views

Glassfish 3: Calling method on ejb in ServletContextListener.contextDestroyed method leads to exception

I have an @Singleton ejb which will be called in a ServletContextListener contextInitialized and contextDestroyed method. The call in the contextDestroyed method leads to an Exception: ...
0
votes
3answers
270 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 ...
5
votes
2answers
156 views

Scheduled database maintenance with Java EE 6 (connection lifetime)

I'm new to Java EE 6 so I apologize if the answer to this question is obvious. I have a task that must run hourly to rebuild a Solr index from a database. I also want the rebuild to occur when the app ...
0
votes
1answer
286 views

what are interceptors in java ee6 used for?

I'm a building a web application where users have to login through a managedbean that is sessionscoped. (using java ee6),what are interceptors and how can they help me in my program.I have been ...
0
votes
1answer
87 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 ...
1
vote
1answer
117 views

Is @PreDestroy called after an exception in @PostConstruct in JavaEE 6?

Currently, we have an issue with a more complex initialization in a @PostConstruct method on JavaEE 6. There are several places where something could go wrong and where an exception is to be expected. ...
0
votes
1answer
93 views

Glassfish cluster + Remote instance fails to recover EJB timers

Our setup is: Glassfish version 3.1.2.2 - DAS and instance-1 running on the same machine, while instance-2 is running on another machine in the same network as config node. We have set up ...
1
vote
0answers
382 views

Glassfish warnings : Avertissement: Multiple [2] JMX MBeanServer instances exist

I use NetBeansIDE 7.0.1 with Glassfish 3.1 and for a project with EJB and JPA for the presentation and the MySQL database. all works fine but whenever I get the following warnings: ...
2
votes
1answer
174 views

Cannot use @EJB to instantiate my object in the WAR application

I am learning Java EE and JSP. I have created an Enterprise Application project in NetBeans. I have the EJB project where all beans are and a WAR project where all web/client stuff is. My problem is ...
0
votes
1answer
185 views

ejb-jar.xml env-entry enums

This is my ejb-jar.xml: <?xml version="1.0" encoding="UTF-8"?> <ejb-jar xmlns = "http://java.sun.com/xml/ns/javaee" version = "3.0" xmlns:xsi = ...
5
votes
1answer
3k views

how to call stored procedure with multiple in and out parameters using entity manager

We are facing an issue while calling the stored procedure from the application. The database is oracle 10g This proc has 2 input parameters and 2 output parameters. Input 1:- DB-List Input 2:- String ...
2
votes
2answers
169 views

Where to put business logic in a Java EE enterprise application

When creating an enterprise Java EE application, part of the business logic like messaging (MDBs) has to be put inside the EJB module. However, there are some EJBs which can be placed inside either ...
0
votes
1answer
112 views

What mean JAX-RPC-based web service endpoints (in context of EJB)?

I read Beginning Java EE 6 platform with Glassfish 3 from Antonio Goncalves. In chapter about EJBs he wrote that some features of EJB may be deprecated in next releases of JEE. None of the ...
3
votes
1answer
179 views

How implement a listener to a EJB Asynchronous call

I have a web application deployed in Jboss 6. I'm using JDK 6, jSF and Primefaces. I have a method in my business layer which takes a long time to complete. I want to be able to show in the web page ...
0
votes
1answer
86 views

What's the simplest way to remotely access a simple EJB running on Glassfish?

I'm novice in Java EE, and to get started, I used this tutorial: http://netbeans.org/kb/docs/javaee/entappclient.html I don't want to change anything, but I want to access the EJB remotely. Which ...
0
votes
1answer
291 views

NetBeans: Using an EJB in the EJB module from the web module

I have created a Java EE application with an EJB module and a web module in NetBeans. The business logic resides in EJBs inside the EJB module. Is it possible for managed beans of the web module to ...
2
votes
1answer
855 views

Interceptor method not called with interceptor binding

I'm using Java EE 6 & Jboss AS7.1 and try to use interceptor binding (Example from jboss site). I have an InterceptorBinding annotation: @InterceptorBinding @Target({ ElementType.METHOD, ...
6
votes
2answers
1k views

Hold session in stateful EJB 3.1 bean?

I'm working on a Java webapp trying to combine the following technologies: Java EE 6 CDI JSF 2 EJB 3.1 Spring Security I provide CDI-based backing beans (@ViewScoped, @Named) for my JSF pages. I ...
0
votes
1answer
965 views

EJB Injection error

I have an ear file (JEE6) containing one ejb-jar(sample-ejb) file and one war file (sample-web). Here is the structure: sample-ear |----sample-ejb.jar | |---TestEjb.java ...
0
votes
0answers
78 views

creating entity beans

i want to create a java EE application (bean container and web container) in netbeans to store customer and order details. one customer can have many orders.but order contains only one customer. ...
1
vote
1answer
116 views

What makes enterprise beans 'heavyweight'?

I have read numerous times that EJBs are heavyweight...yet last night I was going through the Java EE 6 tutorials on EJBs and they seem to be just regular Java objects, except they can have ...
0
votes
0answers
350 views

EJB3.1: entity facade in servlet is null (NetBeans NewsApp tutorial sample)

New to EJB3.1, I'm following the tutorial sample on http://netbeans.org/kb/docs/javaee/javaee-entapp-ejb.html and after completion, I run the project but get a NullPointerException; same happens when ...
1
vote
1answer
155 views

Java EE authentication/authorization for automated task

I am making a Java EE application which needs to invoke some ejb methods based on some events.Since these ejb methods can be invoke only by an admin, somehow the event listener need to be logged in ...
2
votes
3answers
219 views

JavaEE: Perform task at the end of a request/transaction

we have a situation where we want to perform some tasks at the end of a request or transaction. More specifically, we need to collect some data during that request and at the end we use that data to ...
2
votes
1answer
261 views

What are the benefits of using EJBs in a Webapplication?

I am developing a database driven web-application in Java EE and I am wondering about the benefits of using EJbs. If I understand correctly it is best practice to use EJBs for every kind of business ...
3
votes
1answer
246 views

Java EE 6 app with OSGi

I had develop an application base on JSF, EJB and JPA. The JSF side with ManagedBeans and Facelets lies in the war-module and my EJBs are in ejb-module. It is not a big thing, let's say 20 pages, 15 ...
1
vote
1answer
607 views

JPA CDI Injecting DAO into an Entity

I'm new to JPA and CDI and I'm trying to create an enterprise application using these frameworks. I get how I can inject into beans and keep everything tidy and stateless. I also get that JPA loads ...
3
votes
1answer
1k views

Save blob using a stream from EJB to database (in a memory efficient way)

I want to save large attachments (500Mb, maybe, if possible, even > 2Gb) in a database. I know the pros and cons of doing so are discussed very frequently, but that's not the focus of my question. ...
1
vote
0answers
734 views

Invalid EJB using interfaces from external Jar in @local - Annotation

as application server I use Glassfish to create my new JEE 6 application. I have two projects in my workspace, resp. on one sever. The first is a pure EJB Project including some EJBs with local and ...
3
votes
2answers
441 views

Java EE 6 : @Inject and Instance<T>

I have a question about the @Inject annotation in java ee 6 : What is the difference between : @Inject private TestBean test; @Inject private Instance<TestBean> test2; To have the reference ...
1
vote
1answer
352 views

Strange EJB behavior or am I missing something???

Here is a very strange behavior using EJB beans: @Local public interface Provider { void test(); } @Local public interface ExtProvider extends Provider { void test2(); } public abstract ...
6
votes
3answers
1k views

Passing state between EJB methods / @RequestScoped and @Stateless

I have a @RequestScoped CDI bean that I want to turn into an EJB to get declarative transactions. (I'm on EJB 3.1, Java EE 6) Currently, I am passing state between subroutines, under the assumption ...
1
vote
0answers
283 views

Issue with EJB Code - Stateful Session Bean + Hibernate

I am trying to learn Ejb now. Can anybody help me how to implement this Stateful Session Bean Example by using this Hibernate example. Thanks in advance. NB: Actually I want simple code adding those ...
2
votes
0answers
162 views

JavaEE 6 and connection between two EJB by @Remote

I have two EJB One EJB has Remote interface Second EJB try to connect to One EJB by Remote. Under Geronimo EE 5 works fine but Geronimo EE6 fails https://issues.apache.org/jira/browse/GERONIMO-6232 ...
2
votes
1answer
876 views

EJB 3.1 Stateful and CDI Scope Conversation

I have a @Stateful EJB annotated as @ConversationScoped. The client (JSF) makes a request to my EJB which: starts the conversation - conversation.begin(), do something and shows the response to the ...
2
votes
3answers
5k views

EJB 3.1 | Error calling remote session bean via JNDI

I'm trying to call a simple stateless session bean from a Java SE (Simple class). Here's my bean import javax.ejb.Stateless; /** * * @author MMRUser */ @Stateless public class CapitalBean ...
0
votes
0answers
3k views

How can I resolve weblogic.application.ModuleException: Exception preparing module: EJBModule(EJBTEST.jar)

I'm getting the following error when trying to run Hello World EJB on weblogic server following this link EJB Hello World Here is the Bean File: package hello; import javax.ejb.Stateless; ...
6
votes
1answer
2k views

@Asynchronous not resulting in async invocation of EJB method in JBossAS7

I'm struggling to figure out why an @Asynchronous method in my EJB isn't actually being invoked asynchronously. I'm running on JBoss AS 7 using CDI (with beans.xml) in a JSF2 project with simple .war ...
0
votes
1answer
275 views

where to put java ee 6 remote interfaces?

I am learning java ee right now. I have successfully implemented a hello-world style application where a app-client invokes an stateless session bean via a remote interface. (maven3, glassfish3, ...
2
votes
1answer
133 views

How do I separate EJBs from being packaged with my web apps in Netbeans 7?

I have 2 different Netbeans projects: an enterprise application holding 2 EJBs and a web application which uses these EJBs. When I deploy, I deploy them each separately (one as an EAR and the other ...
0
votes
1answer
502 views

How do I keep Glassfish from creating a new session for each request?

Glassfish 3.1.1 Jersey 1.8 I have the following stateless session bean exposed as a JAX-RS resource. VehicleResource is contained in a WAR, with the other EJBs in an EJB-JAR. The entire app is ...

1 2