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.
0
votes
1answer
8 views
Get Stateless Bean from InitialContext in different thread
I want to call a stateless Session Bean Deployed in JBoss 7 from java desktop application.
I create InitialContext instance and everything is ok if I lookup and call bean methods in the same thread ...
3
votes
2answers
523 views
Can an EJB server side send an event to an EJB client side?
I wonder if it is possible to do something along these lines:
1) Server side (EJB class)
@Statefull
public class SomeEJB implements SomeEJBRemote {
@Resource
private SessionContext sessionContext;
...
0
votes
0answers
22 views
Loading configuration data at deployment time in Java EE
I am building a common module for Auditing. I have built the module such that the consumer application can configure the Beans and fields to be audited in a XML or by annotations (similar to general ...
1
vote
1answer
23 views
Sample industry starndard Java (J2EE,J2SE or Spring) application source code
Where can I download or view industry sample standard Java application source code for learn the coding standards and coding styles? J2EE or Spring based application would be better.
0
votes
1answer
21 views
webapp version 2.4 to 2.5 out of memory
I have a requirement to update the EJB version of an application which has a schema version of 2.4, the ejb version being upgraded to is 3.0 which uses annotations, in order for the annotations to be ...
0
votes
1answer
21 views
How inject an EntityManager to a EJB? What is wrong in this situation?
I am trying to run a web application on Glassfish Server. When my DAO is coded like this I have no problems on my test page. I can get all the customers and see them on the datatable.
@Stateful
...
0
votes
0answers
3 views
why dynamic jnp ejb not working?
I have a code to connect to EJB server.
//l_objProperty.put("java.naming.provider.url", "jnp://x.y.x.x:1199/");
String jnpURL = "jnp://" + System.getProperty("jboss.bind.address") + ...
0
votes
0answers
11 views
How to implement JPA GenerationType.AUTO using query
Current application use JPA to auto generate table/entity id using GenerationType.AUTO. Now a requirement wants to get a query to manually insert data in to the database. But how can we generate the ...
0
votes
2answers
47 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
0answers
4 views
Understanding of collocated objects weblogic optimalisation
does the weblogic optimalisation collocated objects (http://docs.oracle.com/cd/E11035_01/wls100/cluster/load_balancing.html) work for EJBs that are deployed to the same cluster node but in different ...
0
votes
0answers
16 views
Fetching application level parameter in websphere - from a common utility module
I am building a Common module to perform Auditing. I used Interceptors (JEE5) to make this cross cutting feature as a separate module. This module provides annotations using which the consumers can ...
0
votes
0answers
17 views
Remote EJB injection between two WAR archives on glassfish
I have been investigating this issue with google for some time now, but in the meantime I feel a little desparate. It seems like there's just one bit I have overlooked by now.
First of all a short ...
0
votes
1answer
14 views
Java richfaces calendar does not trigger action when it has incorrect data
Java richfaces calendar does not trigger action when it has incorrect data:
I have this calendar:
<rich:calendar id="olr_from" enableManualInput="true"
...
0
votes
0answers
9 views
can you use normal sql in cmp 2.0 finders
I am trying to develop some CMP 2.0 entity beans for an existing web application. I want to be able to create a finder for these entity beans using an sql statement that is stored somewhere in a ...
0
votes
3answers
31 views
Hibernate is trying to add null to ID when using EJB
I am using Entity Manager to persist.
If I use JPA stand alone in Java Application it works fine but when I try to run through EJB I get following
Hibernate: insert into public.student (id, country, ...
0
votes
1answer
13 views
Tools to create EAR files
I am new to EJB, I would like to know a tool to configure my EJB and create EAR files.
I know, using Eclipse and Netbeans it is possible, instead I want to use some standalone tools to create EAR ...
0
votes
2answers
408 views
How to call EJB running on remote machine over internet from standalone client on another machine without JSP/Servlet as intermediate?
Case:
Developing a standalone java client which will run on different locations on multiple user desktops.
Application server(Oracle Weblogic) will be running at centralized location in different ...
3
votes
2answers
240 views
Maven ejb-client generation dependency exclusion
We have a solution where our UI projects are including quite a bunch of business services by using the EJB client dependencies. The problem with this on Maven is that even though the client .jar ...
0
votes
2answers
5k views
EJB 3.0 lookup in Weblogic 10.3.0
1: Our application runs on Weblogic Application Server,version 10.3.0
2: In our system,we need to deploy an EJB conforming to the EJB 3.0 specification.
Please find the sample code for our UAT ...
0
votes
1answer
38 views
@Id is not set automatically on insert in entity bean
I have a rather simple EJB application which consists of
One Entity Bean:
import java.io.Serializable;
import java.util.Date;
import javax.persistence.Column;
import javax.persistence.Entity;
...
0
votes
0answers
12 views
Unable to retrieve EntityManagerFactory (JPA)
I tried to write a simple application using the YPA, but when retrieving data from a database error occurs:
java.lang.IllegalStateException: Unable to retrieve EntityManagerFactory for unitName null
...
0
votes
0answers
11 views
weblogic.application.AnnotationProcessingException in Eclipse IDE
I am trying to build a EAR file which contains my EJB modules. The project build works perfectly but when I try to deploy publish and deploy it in server I always get the following exception. Can ...
0
votes
1answer
27 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
0answers
5 views
Tracing Replica-awere EJB routing on weblogic 11g
Does anybody know how to trace (debug) or simply get some visibility into weblogic's routing logic for cluster-awere EJB? To give a bigger picture: we are experimenting with different routing ...
0
votes
2answers
30 views
Update only changed entity fields and check for changes by other users in EJB
In an EJB-class i have two methods with remote interface:
Class MyBean {
public CustomerEntity getCustomer(String id) {......}
public void updateCustomer(CustomerEntity newValues, ...
1
vote
2answers
22 views
EJB 3.1 Generic DAO
I am trying to implement a Generic DAO to use in my project. The code I have implemented thus far is the following:
Base DAO
public abstract class BaseDAO<T> {
private Class<T> ...
0
votes
0answers
31 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
| |
...
0
votes
0answers
10 views
ejb 3.0 annotations not triggered by Geronimo 3.0 container
I have an ear which worked perfectly in geronimo 2.1. This ear has a WAR and some ejb jars. One stateless session bean has one aroundinvoke annotation. The method with the aroundinvoke annotation is ...
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
26 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
1answer
17 views
How to include EJB project into WAR project's classpath in Eclipse?
I'm developing an EAR project which includes a WAR project and an EJB project as its modules.
(the project hierarchy in Eclipse is as follows:)
http://i44.tinypic.com/23koxuo.png
The WAR module ...
2
votes
0answers
27 views
How do I build and deploy a Remote EJB with Maven?
I want to use Maven to build and deploy a Remote EJB. Later, I'll want to be able to inject and use this EJB into a separate WAR project.
So I thought I'll need a jar file that defines the interface, ...
0
votes
0answers
18 views
How to permanently disable in JBoss 7/EAP6?
Current application what to use its own log4j dependency, but this become a challenge to deploy on JBoss EAP6/AS7 as it always roll back the deployment due to logging issue.
So I follow some ...
3
votes
0answers
191 views
+150
Glassfish 3.1.2.2: IIOP1002: Principal propagation: Cannot find principal information in subject
I am trying to track down the cause of an annoying message in glassfish that is polluting our log files.
To simplify our set up, we have 2 glassfish servers running 3.1.2.2.
Server A has a web ...
0
votes
0answers
40 views
Log4J not really excluded in JBoss EAP6/AS7
In jboss-deployment-structure.xml from application war file, I have exclude log4j modules or so
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure ...
0
votes
1answer
38 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
2answers
21 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
...
2
votes
2answers
1k views
Adding external jars to EJB project using EAR content folder
i have EAR and an EJB project. I noticed eclipse (sts) creates and earContent folder so I assume this is where I need to add external jars.
I added my hibernate and log4j jars on this folder but my ...
1
vote
1answer
29 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
15 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
3answers
51 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 ...
0
votes
0answers
16 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
32 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
23 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
1answer
31 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
1answer
26 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
123 views
Why Java EJB apps doesn't have a pre-defined relative path for Its libs?
I could understood that Desktop applications in Java doesn't have a pre-defined relative path for jar (library) files inclusions. It already have a CLASS_PATH env var.
But what I couldn't understood ...
5
votes
3answers
756 views
Jboss Java EE container and an ExecutorService
I have a standalone java app which used the ExecutorService to process a number of jobs in parallel
ExecutorService es = Executors.newFixedThreadPool(10);
I now want to re-use the same solution ...
0
votes
1answer
202 views
Unit testing remote EJB bean with security
This question is similar to Java EE declarative security, acquiring reference to a secured bean from application client but is more specific.
I can unit test my local beans with the Glassfish ...
1
vote
1answer
63 views
Locating a LocalBean by its class
I'm working on a project with JAX-WS.
I need to do like this. (I'm even not sure it's possible or not)
Lets say there are three EJB like this.
public abstract class AbstractEjb<T extends A>
...



