0
votes
1answer
21 views

What are the main differences between EJB 2.0 and EJB 3.0 in the orientation of an object

I want to try EJB and I am studying the theory behind EJB 3.0. I know that in EJB 3.0 you don't have to use deployment descriptor but you can use annotations, and also you don't have to write Home and ...
0
votes
0answers
37 views

EJB3 deployment descriptor. How to define two EJBs?

From tutorials I learn that for providing environment variables (env-entry) for EJB 3.0 we simply can use this: <enterprise-beans> <session> ...
0
votes
0answers
29 views

Why must EJB Timer share a database connection in a cluster?

I have a singleton EJB bean with a timed method that saves statistics to the database once every minute. The bean holds statistics individually on each cluster node, so it is important that it saves ...
1
vote
2answers
62 views

EJB - Lookup failed for 'ejb/BookRequestBean'

I am new to EJB, and was trying "Hello World" type of EJB Java program. Here is my EJB: package dukesbookstore.ejb; @Stateless(name="BookRequestBean", mappedName="ejb/BookRequestBean") @Named public ...
0
votes
1answer
34 views

EAR cannot find EJBs in other EAR (WAS shared lib issue)

I've got an EJB set up in my entity-layer-EAR: <session> <ejb-name>DoctorDaoImpl</ejb-name> <business-local>mypath.DoctorDao</business-local> ...
0
votes
1answer
92 views

Failed to create remoting connection

Good Day! I am doing migration from glassfish to JBoss 7.1.3 . I have .ear application which fails to create remoting connection.I guess having problem with my EJB. Below is my EJB that deployed ...
0
votes
1answer
32 views

EJB - Pass Contextual Data from JSF to EJB

A have a new feature that forces me to pass some new data structure to my EJBs. This is a user session context that has some information about the current user. How can I pass this data to my EJBs ...
0
votes
0answers
28 views

jpa query get entity with their all childrens

I have got entity something like that: public class Group{ @Id private int id; @JoinColumn(name = "PARENT_ID", referencedColumnName = "ID") @ManyToOne private Group parentid; ...
0
votes
0answers
37 views

Expose the JNDI name of the Singleton EJB

How to declare a singleton EJB bean in an weblogic-ejb-jar.xml to expose the JNDI name? Please provide any reference. ejb-jar.xml <session> <description>ESS RemoteSingletonAsyncEJB ...
0
votes
1answer
47 views

ClassNotFoundException: org.jboss.annotation.ejb.RemoteBindings in JBoss 5.1

I'm deploying an application with some EJBs on JBoss 5.1 (default configuration). I don't use class org.jboss.annotation.ejb.RemoteBindings anywhere in my code, also any dependency don't use it. I ...
0
votes
1answer
149 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
191 views

sms/email alert in dynamic web project using servlet [closed]

i'm creating a dynamic web project using servlet(Eclipse) which consists of e-mail & sms alerts like for forget password options & for other related fields. i have no idea about how to ...
0
votes
0answers
51 views

How to check clientID property value of @ActivationConfigProperty

I have a MDB which is deployed in a clustered environment {JBoss as AS, HornetQ as MOM}. Below is the code : @MessageDriven(mappedName = "java:jboss/queue/ClusterEventTopic", activationConfig = { ...
1
vote
1answer
98 views

EJB Exception - An attempt was made to traverse a relationship using indirection that had a null Session.

This is not a new exception. I went through lot of forum posts in stack overflow and understand why this is happening. But I need help in resolving my issue. I have two entity beans Equipment class ...
1
vote
1answer
93 views

Java EE using MongoDB without JPA or EJB?

Could someone give me an explanation of if what I'm doing makes since? I am currently developing a Java EE application using MVC architecture, and MongoDB as my database. What I have is several ...
0
votes
1answer
40 views

How to choose the proper package to import in a maven project?

I am using IntelliJ IDea 12 Ultimate and I have created a Maven project. Then I created a class and I tried to add the @Entity annotation to it. Now instead of leting me choose a local package as it ...
3
votes
1answer
105 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
0answers
152 views

java.lang.ClassNotFoundException: oracle.jdbc.oracore.OracleTypeCOLLECTION (EJB)

I'm trying to run an enterprise application (containing EJB & WAR modules) in the following environment. GlassFish Serve 3.1.2 EJB 3.0 JPA 2.0 Oracle 10g The connection pool is successfully ...
0
votes
0answers
31 views

How to make an i18n-query with fallback language using the CriteriaBuilder?

I have 3 MySQL tables: LANGUAGE -id -name INDUSTRY -id INDUSTRY_DETAIL -id -industry_id -language_id -name They contain the following data: LANGUAGE ...
0
votes
3answers
141 views

Override EJB 3 Stateless session bean's methods by “pure” class

We have an application with an EJB 3.0 module. We want to override the business logic in the EJB implementation. Is it possible? Once I override, how can lookup or inject the overridden session bean? ...
1
vote
2answers
110 views

EJB3 client callback?

For learning purposes as I'm new to EJB3, I'm implementing the board game Risk as a client-server app with EJB3 on the server side. The intention is that multiple users would log in and play a game ...
1
vote
1answer
108 views

What is the EJB Client?

ALL, I am a newbie for EJB of Java World, After reading the good book named Ejb3.0 in Action, I have a question about Session Bean. What is the EJB Client for a session bean? Say we have some code ...
0
votes
1answer
76 views

how to add day to date in ejbql

I am trying to achieve dateadd in my EJB query. I tried something like this but it doesn't work: select t.date + 1 from Table t Once I tried executing that code, this exception comes out: ...
0
votes
1answer
90 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 ...
0
votes
1answer
422 views

Error invoking timeout for timer - could not obtain lock within 5MINUTES at EJB 3 timerservice

I have an application running on jboss 6.1 that defines a lot of dinamyc timers at the startup (e.g doSomething every minute) based on informations already persisted on the database. The timers are ...
2
votes
2answers
374 views

EJB 3.0 exceptions handling

I reading ejb specification, and there written: If the bean method encounters a system exception or error, it should simply propagate the error from the bean method to the container (i.e., the ...
1
vote
1answer
141 views

EJB 3.0 - Sequence of transactionally independent EJB calls with CMT

There is an MDB and a sequence of stateless EJBs to do some work with message (WAS 7.0, Java EE 5, EJB 3.0, JPA). Sequence (using CMT): MDB accepts message MDB persists entity with the message ...
1
vote
0answers
45 views

XA Transactions and work outside it's context

I'm getting a message through MQ to my EJB application and it's a XA Transaction. After I receive message I need to send some http requests and send back the response(This will be a RMI call).My ...
-1
votes
1answer
412 views

EJB2 - $Proxy0 cannot be cast to com.TestEJB.TestEJBInterfaceRemote error

I am trying to build a simpmle Hello world type EJB 2.1 application. The intended runtime for this application is supposed to be Jboss 5.1.0. Here is the code i have written. EJB Configuration file: ...
0
votes
1answer
461 views

Error 500: java.lang.NullPointerException when running an EJB sample project

I am new to EJB and hence I was executing a sample EJB project as in the tutorial Java EE 6 tutorial Here's how the beans look: Converter.java package converter.ejb; import java.math.BigDecimal; ...
0
votes
1answer
312 views

Maven vanilla project for EJB2 and EJB3

I have a requirement where i have two develop two projects, one with EJB2.1 and one with EJB3.x. The EJB2.1 will be an extension to an existing project hence the reason it is v2.1 and cannot be ...
1
vote
1answer
180 views

Calling an EJB3 library from an EJB2 library

I have an existing application that is written in EJB2.1. This is deployed on jboss-5.1.0.GA as an EAR. I now have a new requirement to implement a process which is supposed to be used by the EJB2.1 ...
0
votes
1answer
27 views

the method doesn't add daa in the database

i'm working on an ejb 3.0 tutorial and i want to add data to the database when i set run it doesn't indicate any error and it doesn't add the following data in the db either : this is the session bean ...
0
votes
1answer
171 views

EJB - error on dependency injection of Entity Manager

I get this error: ... 32 more Caused by: java.lang.IllegalStateException: Attempting to execute an operation on a closed EntityManagerFactory. What I want to do is create a entity class User and a ...
0
votes
1answer
121 views

How to create an ejb entity with double primary keys?

I am having a problem while creating an entity of a related table (I'm using MS SQL Server and Enterprise Application in NetBeans IDE 7.2 - EJB3) My database includes: Projects table: primary key: ...
0
votes
3answers
144 views

Persistence with EJB3 doesn't work

I have a method to save a new object in an EJB bean. This method is called, without error, but nothing changes in the database. I can't understand why. Here is the code: @Stateless(name = "Ar", ...
0
votes
2answers
58 views

Location of JNDI file

Since I am new to EJB, I do not know where to search for the JNDI file of an EJB 3.0 project. I am told that in order to access the EJB classes, we need to lookup the class using the JNDI. So can ...
0
votes
1answer
143 views

Architecture choice: ESB and EJB

I am building a new Java EE application (thin client), and here is the application layers: The application presentation will be with JSF2 / Spring webflow and RichFaces 4 The businees layer will be ...
0
votes
1answer
63 views

How do i do a like statement in ejb-ql? [duplicate]

Possible Duplicate: Parameter in like clause JPQL I got this code from an example, how do i do a search with ebj ql? SELECT OBJECT(p) FROM Person p WHERE (p.name LIKE ?1) How do i ...
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 ...
1
vote
1answer
100 views

Message driven bean applicable for this requirement?

Basically I have the problem of a long running task in my web application. Currently this task is executed by an EJB which is blocking for the time it is executing the task (task is an external ...
-1
votes
1answer
69 views

Ejb Home interface in netbeans

I am new to EJB ,I am using Netbean IDE. I am able to create a session bean remote interface but not able to create Home interface, please help me ...
2
votes
3answers
580 views

@EJB annotation vs JNDI lookup

Is there any situation where it's better to use JNDI than to inject a stateless session bean using the @EJB annotation? We're using JSF 1.2 with Sun Application Server 9.0_01. Our team is debating ...
0
votes
1answer
246 views

SequenceGenerator error: not a valid function or procedure name

I have an EJB 3.0 client and server with JBoss AS 7.1.1. I'm trying to persist a list of entities to the database I'm connected to but I keep getting this error: java.sql.SQLException: ORA-06576: not ...
0
votes
1answer
348 views

Inject EJB 3.0 in WebLogic Server v10.3

I am having some issues trying to inject a stateless EJB into an Application Client Project. Both the App Client and the EJB are in the same EAR. Using JNDI, I am able to retrieve an instance of the ...
0
votes
0answers
79 views

Delegate not working outside of constructor

I am using EJB 3.0 along with JBoss AS 7.1.1. I am able to make successful calls to my delegate's functions through the remote interface but only in the constructor where the delegate is first ...
0
votes
1answer
160 views

How to delete records with condition in ejbql?

I have the following data in my database table 1 myname@email.com 2323 2 myname@email.com 3432 3 myname2@gmail.com 4433 I want to remove all records in table where email == myname@email.com ...
2
votes
1answer
2k views

IllegalStateException: No EJB receiver available for handling

I have a client appication and a server using JBoss AS 7.1.1. On startup, my client connects to the server just fine and gives me a remote interface to use. However, when I try to run a function ...
0
votes
0answers
81 views

Merge JTable to database table [closed]

I have a JTable that is setup using a bean I made. I'm using GlazedLists to accomplish this. My program connects to a Oracle Database and my application server is JBoss AS 7.1.1. I would like to ...
1
vote
0answers
252 views

How to handle RunTimeExceptions in MDB control before going to onMessage()

I was written a simple MessageListener(MDB) it is working fine.How to handle runtime exceptions in this. [Ex: if was try to deploy this listener with a wrong queue name like "XXXX" instead of right ...

1 2 3 4 5