Tagged Questions
The ejb-2.x tag has no wiki summary.
5
votes
2answers
819 views
Mixing EJB 2.x BMP entity beans with Hibernate 3.x
I have a large application that uses EJB 2.x entity beans (BMP). This is well-known to be a horrible persistence strategy (I can elaborate if necessary).
I'd like to start migrating this application ...
4
votes
1answer
1k views
Testing EJB2.1 to EJB3 migration
We would like to migrate an application written using EJB2.1 beans (both Entity and Sessions beans) to EJB3 to improve on maintanance and use new features in the EJB3 spec.
How would we do the ...
4
votes
2answers
2k views
How do I migrate ejb2 stateless session beans to ejb3 piecemeal?
The EJB3 spec indicates that EJB2 and EJB3 can co-exist in a single application.
I wish to migrate my EJB2 stateless session beans to EJB3 stateless session beans.
This question does not relate to ...
3
votes
3answers
371 views
EJB and Hibernate in Struts application
I have an application that has a struts 1.1 and EJB 2 combination, but now we are introducing a new piece into it with hibernate 3.2. The hibernate DAO's run in parallel with the EJB 2 session bean ...
2
votes
1answer
123 views
Jboss AS 6 - How to find an EJB via JNDI
I am trying out a simple EJB 2.1 HelloWorld using Jboss AS 6. I created an EJB jar file with the following structure:
HelloWorldEjb
|-ex1
|-ejb21
|-ejb.jar.xml
...
2
votes
1answer
82 views
Migrate from EJB 2 Entity Bean to EJB3
I am having some entity beans created in EJB 2.0 and now I need to migrate to EJB 3.x, but I've studied that use of entity beans are changed in EJB 3.x and they are using JPA instead.
Where can I ...
2
votes
3answers
165 views
What does “Lock released while waiting:” mean in a Java thread dump?
In this thread dump:
INFO | jvm 3 | 2011/06/08 13:36:12 | "ExecuteThread: '38' for queue: 'default'" id=55 idx=0x78 tid=5316 prio=5 alive, in native, waiting, daemon
INFO | jvm 3 | ...
2
votes
2answers
333 views
Can EJB2 and EJB3 coexists in one application?
does anybody know if it is possible to iteratively replace EJB2.1 beans with EJB3 beans in JEE application?
That is: at one time remove one 2.1 bean from the code and add corresponding EJB3 bean ...
2
votes
2answers
246 views
EJB specifications and Java versions - backwards compatibility
This is my understanding of relationship between the EJB spec and Java versions
EJB 2.0 was part of J2EE 1.3 platform, which was on top J2SE 1.3
or JDK 1.3.x
EJB 2.1 was part of J2EE 1.4 platform, ...
2
votes
2answers
345 views
EJBs 2.0 on OpenEJB - Where do I put the needed jars?
We've been using WAS 6.1 so far to deploy our web apps. Now we need to migrate to an economics-savvy Tomcat + OpenEJB solution. The OpenEJB 3.1.2 container is plugged into Tomcat 6.18, no standalone ...
2
votes
1answer
244 views
Moving from jboss 3.2.1 to jboss6
Now we have a project with java 1.4 and ejb 2.1 running on jboss 3.2.1. We are trying to update up to java 6 and ejb3.1, but we are doing it in steps. So my question is simple, can we use ejb2.1 on ...
2
votes
0answers
238 views
How to add the ear JNDI namespace to EJB2.x Beans?
In the project I am currently working at we have about 20 different EJB 2 JARs that are used across multiple (Swing-) clients.
Example:
customer-1.0.0.jar
^ ^
| ...
2
votes
0answers
139 views
JBoss EJB2 Timers Service - multiple servers, single TIMERS table?
I can't find this in the JBoss documentation anywhere, so am asking here.
Can multiple, non-clustered JBoss instances access and share the same TIMERS table (as used by EJB2 Timers Service) without ...
2
votes
3answers
547 views
Is this valid EJB-QL?
I have the following construct in EJB-QL several EJB 2.1 finder methods:
SELECT distinct OBJECT(rd) FROM RequestDetail rd, DetailResponse dr
WHERE dr.updateReqResponseParentID is not null
...
2
votes
2answers
608 views
Migrating EJB2.x BMP entity beans
We use EJB2.x entity beans with BMP (bean managed persistence). It appears BMP is not supported in EJB3. We had wanted to stay current and upgrade to EJB3. Does anyone know if there are in fact any ...
1
vote
3answers
134 views
What is the EJB 3.0 version of method ejbCreate
I would like to migrate some old EJB 2.1 code to EJB 3.0, but there is some handling of configuration errors in the ejbCreate method. Is there an EJB 3 version of that method?
Edit: In EJB 2.x ...
1
vote
2answers
244 views
jboss 5 ejb2.1 lookup from struts action class causes ClassCastException
I have ejb 2.1 deployed in JBOSS 5 server . The jndi name is ejb/DemoEJB and it matches the jmx-console tree in jboss . While i try to lookup in struts action class as follows , it throws the ...
1
vote
2answers
154 views
difference bewteen <jndi-name> and <local-jndi-name> in Jboss.xml?
I am new to EJB and trying to run some EJB (2.0) examples in Jboss 5. The execution is ok, but I found in the jboss.xml these lines:
<jboss>
<enterprise-beans>
<session>
...
1
vote
1answer
53 views
EJB method processing hangs somewhere during execution
I have a strange problem, here is a quick snapshot of the system: I have a web application which calls local EJB bean, lets call the local EJB 'LocalEJB', this EJB calls remote EJB - 'RemoteEJB' ...
1
vote
1answer
99 views
How to deploy EJB 2.0,JARs and EARs in Tomcat-OpenEJB?
Is there any way to deploy EJBs,JARs or EARs in Tomcat-OpenEJB ?
If I donot want to use collapsed EAR concept or JEE6 .
Please reply..!!
Thanks in Advance.
1
vote
1answer
156 views
(MockEJB) Get a mocked entity bean from in-container test
I'm using mockejb framework to mock entity beans in memory, I make a lookup, mockejb brings me a proxy for the real entity. That's working.
But I needed to get a Session Bean from the container JNDI ...
1
vote
2answers
121 views
Parent and child classes implementing a common interface, repeatedly
Today i found in my codes what appears to be a child class implementing an interface that the parent class is already inheriting.
May i know if this has any adverse side effects or intentions, as i ...
1
vote
0answers
483 views
Spring entity manager injection with EJB 2.1 CMP (Jboss 4.2/Websphere 6.1) with Hibernate
I'm successfully using JPA (Jboss 4.2 / Hibernate) within EJB 2.1 Stateless, retrieving Entity Manager Factory from Jndi (published using persistence.xml jboss.entity.manager.factory.jndi.name ...
1
vote
3answers
215 views
Adding Spring Framework to existing JSP/EJB application
I had an existing application developed in JSP and EJB 2.1 years ago. Now i want to enhance the application with new features. Is there a way to use Spring and Hibernate frameworks within the same old ...
1
vote
0answers
174 views
Deploy EJB2.1, BMP, to GlassFish, is it possible?
I cannot seem to find any documentation on bean-managed persistence (bmp) with GlassFish. how do I configure my ejb-jar.xml to let the beans themselves manage their persistence, and not the container? ...
1
vote
1answer
137 views
CMP 2.0 bean auto-generated primary key WAS 6.1
is it possible to map bean's key field with identity primary key column in DB2?
Sample table:
CREATE TABLE ADDRESS (
ID INTEGER NOT NULL GENERATED BY DEFAULT AS IDENTITY (
START ...
1
vote
1answer
490 views
How to access remote EJB 2.1 bean on JBoss 4.x from outside container
I've got a session bean, defined in an ejb-jar.xml and jboss.xml. It's defined with an ejb-name, remote and home interface and an implementation.
When I fire up JBoss and view the JNDI tree the home ...
1
vote
2answers
576 views
case-insensitive search in EJB QL
This looks really simple and I can't believe I haven't found a solution myself. I have a bean named PersonBean, which has a name. Now I want to write a finder method that takes a string and looks for ...
1
vote
0answers
126 views
EJB2 deployment problem (JBoss 3.2.1)
When I try to deploy my simple app I get the following error:
Bean : TestEJB
Method : public abstract S2KManager create() throws CreateException, RemoteException
Section: 7.10.6
Warning: The method ...
1
vote
1answer
260 views
how EJB Life cycle methods are invoked
Can some one explain on how typical sessin bean's life cycle is and who hadle those?
1
vote
1answer
161 views
IllegalStateException: Cannot obtain inMethodFlag for: getPrimaryKey
Can anyone tell me why following exception comes?
java.rmi.ServerException: RuntimeException; nested exception is:
java.lang.IllegalStateException: Cannot obtain inMethodFlag for: getPrimaryKey
...
1
vote
2answers
3k views
How to create EJB 2.1 beans in Eclipse 3.5
I am not able to create EJB 2.1 beans using a wizard in the latest version of Eclipse. I only see options to create EJB 3.0 beans.
I selected 2.1 as the 'EJB Module Version' while creating the "EJB ...
1
vote
1answer
468 views
Can you run EJB 2.1 beans in OSGi?
I have a J2EE 1.3 app that uses EJB 2.1 session and entity beans. Currently this app runs as an EAR file on JBoss. I'd like to switch to the SpringSource dm Application Server because of all the ...
0
votes
1answer
9 views
Runtime Exception while creating EJB Object
I have developed an application with Java 1.6, EJB-2.1. The application is deployed on JBossAS-5.1.0. The application has been running very smooth for long a time. But for last two days, I found ...
0
votes
0answers
19 views
update a record more than once in the same session CMP entity bean GlassFish2.1
I am new to J2EE. I am using GlassFish Server 2.1, mysqlserver5.1 for my j2ee project.
CMP managed entity bean updates a record first time successfully.
But, the CMP managed entity bean fails to ...
0
votes
1answer
28 views
How to migrate EJB 2.1 Project from Websphere 7 to Websphere 8
I have an EJB 2.1 project, works on WebShere 7. I must migrate it to WebSphere 8.
Which one is the better (less effort) approach:
First convert the project into an EJB3.1 project then migrate into ...
0
votes
1answer
19 views
Remote EJB call between IBM Websphere standalone JVM's on same host
I have 2 standalone IBM WebSphere server running on same host. Both the servers have same EJB deployed but our code is distributed among 2 EAR's as ClientAgent and services respectively. When calling ...
0
votes
0answers
13 views
Entity Bean Error
I am using oracle 10g.In my application ,have an entity bean(ejb2.1) mapped to a table.I have updated the table with hugh record manually(bulk insert).After this when i try to add a record using that ...
0
votes
0answers
13 views
EJB 2.x - “javax.ejb.EJBException: CMR field value is already loaded”
I have a situation where I'm running a process in two different transactions. The second one locks with the error "javax.ejb.EJBException: CMR field value is already loaded".
Error stack:
...
0
votes
3answers
21 views
What EJB(2.1) sould I use in a client-server app, with potentially thousands of concurrent users?
I have to plan this big client-server app, communicating through EJB(2.1).
-The server serving these thousands (potentially tens of thousands) of clients is in one central place, and has 2 working ...
0
votes
0answers
32 views
Exception in getting Hibernate session using EJB 2 , Jboss 4.2.3 GA , Stateless SessionBean
I am using EJB 2 and I have a stateless session bean trying to use Hibernate session to connect to database. The problem is, I am getting exception
org.hibernate.HibernateException: Unable to locate ...
0
votes
1answer
65 views
Porting EJB3 to EJB2
This is a weird situation. Let me explain it as best as I can.
I have an interface Client which has methods which throw a Custom Exception.
My EJB3 Remote extends this interface Client and was ...
0
votes
1answer
27 views
For Container Transaction the markup in the document following the root element must be well-formed
I am getting the error of "The markup in the document following the root element must be well-formed" for container transaction.
The ejb-jar.xml code is given below:
...
0
votes
1answer
38 views
Low performance in JBoss 5
I got a strange performance problem switching from JBoss 4 to JBoss 5. There is a stateless bean method and it is invoked in 44 sec in JBoss 4. It's OK. After I run that method in JBoss 5 it takes > 5 ...
0
votes
1answer
155 views
EJB2.1 hello word application configuration issue
I am trying to make hello world EJB2.1 application in RAD6 with Web sphere application server. But i'm unable to understand that which file i've to edit in RAD6 for doing changes that we do in ...
0
votes
1answer
45 views
Protocol Switching, Remote call to an EJB from presentation to Business using Spring
I have been using Spring DI and IOC extensively in my earlier projects. As per a new project requirement, we have to setup our projects as follows :
Business project (Java project)
Common project ( ...
0
votes
0answers
148 views
How to invoke an EJB Session Bean method from a Quartz scheduled job using a JobDetail object?
I would like to invoke a method inside a stateless session bean every two seconds. Right now, my task works if I simply run a System.Out statement (look at the two commented lines in the code below). ...
0
votes
2answers
71 views
Deploy EJB2 on Weblogic 10.3
I try to deploy ejb2 on weblogic 10.3 but I face a problem the deployed ear can't see new methods added to any ejb session bean. I added the method to remote interface and I added the implementation ...
0
votes
0answers
89 views
Migrating EJB 2.1 from Weblogic to JBoss
I am wondering if there are any XSLTs available that takes the Weblogic EJB xml files
(weblogic-ejb-jar.xml, weblogic-cmp-rdbms-jar.xml and weblogic-cmp-extras.xml) and convert them to JBoss EJB xml ...
0
votes
0answers
85 views
EJB and Spring which one is better [closed]
Please if you can answer these question by labeling A) to H) I would really appreciate it
Because this way I know what answer is for what question.
A) When do we actually need EJB over spring.
B) Can ...