Hi,
Easy questions but I can't find response nowhere.
I configure my transaction manager with the template :
PROPAGATION_NAME,
ISOLATION_NAME,
readOnly,
timeout_NNNN,
+Exception1,...
Type: Posts; User: talkinjive; Keyword(s):
Hi,
Easy questions but I can't find response nowhere.
I configure my transaction manager with the template :
PROPAGATION_NAME,
ISOLATION_NAME,
readOnly,
timeout_NNNN,
+Exception1,...
Hi Rod,
It was a stupid mistake from me : I use comma instead of space in ejb.jar Manifest.mf Class-Path=...
My ejb can reach now my dao.
Sorry 4 the disturbance and thanx a lot.
TalkinJive.
Hi Andreas,
It was a stupid mistake from me : I use comma instead of space in Manifest.mf Class-Path.
Sorry 4 the disturbance and thanx a lot.
TalkinJive.
Hi Andreas,
I have written in Manifest.mf of ejb.jar : 'ClassPath : dao.jar, ...'.
When I don't use Spring at all, it works well. ejb.jar sees dao.jar.
Now I wire in applicationContext of...
Hi Rod,
It's a honnor for me that you answer !
I have this EJB in package busy of my business.jar :
Business the business interface
BusinessHome the Home Interface
BusinessLocal the Remote...
Hi,
I deploy a .ear on JBOSS.
I have 3 layers : web.war, ejb.jar, dao.jar.
I can reach ejb from web layer using Spring.
But I can't manage to reach dao from ejb !
I wire ejb with dao in...
Hi
I deploy a EAR with JBOSS.
I have 3 layers : web.war, ejb.jar, dao.jar.
I can reach my ejb from my web layer with Spring
But I can't manage to reach the dao from the ejb.
No way to...
Hi,
I deploy a .ear in JBoss. It contains : .war, ejb.jar, dao.jar
I want to wire my EJB to my DAO Object.
In my ejb layer, EJB BusinessEjb use POJO BusinessImpl.
applicationContext.xml of...
Hi,
I have a servlet Handler & a EJB Business.
My servlet can call my EJB with :
ctx = new ClassPathXmlApplicationContext("/WEB-INF/spring-servlet.xml");
this.business = (Business)...