Enterprise JavaBeans (EJB) is a managed, server-side component architecture for modular construction of enterprise applications. The EJB specification is one of several [Java] APIs in the [Java EE] specification.

learn more… | top users | synonyms

0
votes
0answers
5 views

Passing objects via EJB RMI - NullPointerException

I haven't been able to find anything useful in days of searching. Maybe I'm just not looking the right place. Here's the idea - really simple: I want to pass an object from one EJB to another by the ...
0
votes
2answers
14 views

How can I make this sql query with jpa ?

I'm trying to create a query in my entities. I have these following tables in mysql DB : Categorie : id, nom ... Article : num_code_barre_, categorie ... In my entity Categorie : ... @Id ...
1
vote
1answer
18 views

How to test class with local connection to EJB

I am facing problem with testing class which has implemented some local connection to EJB in the constructor. This connection is used just inside the constructor and sets some private attributes of ...
0
votes
0answers
11 views

what kind of exception can let ejb auto fail over

I'm using jboss stateless ejb 2.x. ejb deployed in jboss clustering, for some reason, one node in cluster can't hand ejb invocation, I'd want throw an exception let client can fail over to other ...
0
votes
0answers
13 views

Measuring how many transactions are done on JTA application

I had a web software running in a Jboss AS 7 container witch saves our data in a PostgreSQL 9.1 database via JPA, an its configuration delegated to JTA. Last year it was adapted to run at AWS EC2 ...
0
votes
1answer
21 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
0answers
21 views

Why can't my EJB ReST service extend an abstract class from a seperate jar?

So, I have a stateless EJB in a .war file. This EJB is used as a ReST service. In an jar, I have an abstract class with some methods implemented. The service EJB extends the abstract class from ...
0
votes
0answers
23 views

ThreadLocal cannot be set after redeploying the EJB on JBOSS

I am using JBOSS7. I store some information about the SOAP request in a ThreadLocal variable in order to adding it to the log4j header. My ThreadLocal class: class MyStorage private static final ...
0
votes
1answer
28 views

jndi lookup routine?

I've got a java se aplication that lookup for remote bean and executes methods of this object. Is there a way to lookup just once and then use this object or i have to lookup every time ? I was ...
0
votes
3answers
38 views

Injecting EntityManager results in NullPointerException in TomEE?

Here's my MovieBean.java: @Stateless public class MovieBean { @PersistenceContext private EntityManager em; /** * Default constructor. */ public MovieBean() { // TODO Auto-generated ...
1
vote
1answer
12 views

EJB3.1 NotSerializableException

I am getting this error and i don't know how to fix: java.io.NotSerializableException: com.procc.dao.EJB31_Generated_AlertFacade_Intf_Bean_ at ...
0
votes
0answers
19 views

struts2 actions with @Inject ejb dependencies doesn't working using guice 1

I am following using-dependency-injection-in-struts2-for-stateless-ejbs-part-1/ tutorial to get benefit from struts2 dependency injections as we can't use cdi directly into struts2 action classes. I ...
0
votes
1answer
20 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
1answer
20 views

JBOSS doesn't find datasource

I'm developing a webapp with EJB3, Hibernate, JSF and JBOSS, but I'm not able to start JBOSS, as it keeps on throwing this error: 16:03:55,888 INFO [org.jboss.modules] JBoss Modules version 1.1.1.GA ...
0
votes
1answer
19 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: ...
1
vote
2answers
26 views

Is it possible to use Hibernate with EJB3?

I can't find any example so I'm starting to doubt whether it is possible or not... But I was asked to build a webapp with both of them...
2
votes
1answer
52 views

In EAR project EJBs appear twice when deployng

When I deploy EAR project, I noted that same EJBs appear twice - in WAR and JAR(EJB) modules. Where can be problem? I build project using Maven. And didn't explicitly define any ejb-jar.xml. In ...
-1
votes
1answer
15 views

EJB2 Authorization related simple program ( java.lang.SecurityException: User: manager, failed to be authenticated.)

I have written the following files ------------------------------- ejb-jar.xml ------------- <?xml version="1.0"?> <!DOCTYPE ejb-jar PUBLIC '-//Sun Microsystems, Inc.//DTD Enterprise ...
0
votes
0answers
28 views

choice in wsdl jax-ws web services example

How to make choice in jax-ws web service? this is code @XmlElement(required = true) private String defaultPhone; @XmlElements(value = { @XmlElement(name="ClientB",type = ClientB.class), ...
0
votes
1answer
22 views

Legacy app made accesible in the same server or via ws

In our system we have a legacy standalone java application which we are trying to made available for new webapps we are developing all together running in a server (f.e. Tomcat) In order to made ...
0
votes
0answers
20 views

Programmatic Login from Tomcat JSF2 Frontend to WebSphere 7

We are developing a distributed application, using a rather heavy weight approach.The UI is deployed as a WAR on Tomcat 6, the back-end is deployed as an EAR on WAS 7. Without application security ...
0
votes
0answers
36 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> ...
1
vote
0answers
10 views

Weblogic Transaction Behavior

I'm working on an older EJB 2 application. In the ejb-jar.xml, I see: <container-transaction> <method><ejb-name><method-name>someMethod... ...
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 ...
0
votes
1answer
13 views

Calling EJB from war client

I have my application ear .Now inside this ear I have two parts . First EJB module Second Web Module packaged inside the war. So my Ear root looks like EAR ---EJB Modules ---WAR Modules Now I ...
1
vote
1answer
26 views

EJB Injection in Application Client

I tried inject a stateless EJB in my application client and i get the following error SEVERE: Exception while preparing the app : Unable to load the EJB module. DeploymentContext does not contain any ...
1
vote
1answer
29 views

Unable to generate tables from entities

I'm trying to use JPA Tools in Eclipse in order to Generate tables from entities. This states that I should perform several action in order to do something similar (creating Entities from Tables). I ...
0
votes
3answers
40 views

JPA Hibernate - @ManyToOne not getting correctly

I'm using JPA (Hibernate) and I have a problem when I try to fetch an object from my database. I'm using Glassfish 3.1.2, Hibernate and Oracle database 10.2.0.4. Here is the concept of my ...
0
votes
0answers
7 views

Sharing a “Utility Project” amongst multiple EARs in RAD

I am trying to document the correct way to share a utility project amongst multiple EAR projects in RAD for my team. I know that when creating a Utility Project, it can be associated with an EAR. ...
1
vote
0answers
19 views

Why does JTA have a Transaction and a UserTransaction interfaces to represent transaction?

The JTA api defines two interfaces Transaction http://docs.oracle.com/javaee/6/api/javax/transaction/Transaction.html UserTransaction ...
1
vote
1answer
27 views

Can't do a lookup for JNDI

I have the following declaration in my ejb-jar.xml <enterprise-beans> <entity> <description>Simple CMP Entity bean example</description> ...
0
votes
1answer
19 views

Change data source dynamically on user login

I have a project that has the following requeriments: Allow users to login in the same Web Application using different schemas following a criteria; Dynamically route the datasource against a rule - ...
0
votes
0answers
16 views

EJB's in glassfish cluster

I'm new to EJB technology and trying to run some examples. My goal is to create an EJB, deploy it to glassfish cluster with couple of instances and make a client which will call this EJB. I've ...
0
votes
0answers
11 views

EJB client not displayed on Weblogic

Hi I have created an EJB 3.0 App and have exposed this EJB as a webservice . Have created locale and remote interface for the same. Now the port of the server 7005 where I have deployed this EJB is ...
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 ...
0
votes
1answer
11 views

Using a 2.1 EJB for a ReST Service

I have a 2.x stateless session EJB as a ReST service using Jersey. @Path("/foo) public class FooEjb...{ @GET @Produces({MediaType.APPLICATION.JSON}) public ArrayList getAList(){ } } The ...
0
votes
0answers
30 views

Mule EJB endpoint for dynamic method call

I am doing an integration poc to invoke a remote EJB servcie by ejb:connector and ejb:outbound-endpoint in component binding. It works perfectly fine if I define methodArgumentTypes and method ...
0
votes
1answer
30 views

@OrderBy annotation cannot order by sub relation

If There is a relation like this: entity A (one) ---> (many) entity B (one)---->(one) entity C And current JPA entity A has following relation definition: @OneToMany(mappedBy = "A", fetch = ...
0
votes
1answer
39 views

Getting Wrong Target exception on EJB local call

[TxPolicy] javax.ejb.EJBTransactionRolledbackException: Wrong target. class com.sample.mock.service.MockFinanceService for public long ...
0
votes
1answer
37 views

Remote lookup using @ejb annotation

I have 2 servers instances of Jboss 5, each of which is deployed with two EAR's. Say Client.Ear and Server.Ear. Server Ear expose some ejb's. I want to inject this to ClientEar via annotation. Using ...
0
votes
0answers
5 views

Error while checking database.properties: Installing RUBiS Benchmark

I am currently trying to install RUBiS PHP version. $ make client #no problem $ make emultor /usr/lib/jvm/java-1.7.0//bin/java -classpath ./Client edu.rice.rubis.client.ClientEmulator RUBiS client ...
0
votes
1answer
54 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
43 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
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
0answers
14 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
1answer
29 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 ...
1
vote
1answer
33 views

WAS 7.0.0.23 - default interceptors in MDB with activation spec throws classcastexception

I am facing an issue with Interceptors for MDB in Websphere. I configured defaultInterceptor for MDBs with ActivationSpec and not listerner port in WAS 7.0.0.23. I am getting ClassCastException. The ...
0
votes
0answers
11 views

Throw TraversableResolver.isReachable() only on one of the three databases, other two are fine

I run the same application on local oracle database and testing db A, no problem when persisting a series of entities, but when comes to db B, when try to persist one of the entities, the server gives ...
1
vote
2answers
61 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
0answers
53 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 ...

1 2 3 4 5 52