• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Jboss and Ejb 2.1 ejb-ref lookup

 
Ranch Hand
Posts: 111
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am using JBoss 4.2 with ear-isolation = true and call-by-value=false

I have the following situation:

ejb A needs to call ejb B, and both are in different isolated EARs.

To do this, as stated on the JBoss community wiki's:

http://www.jboss.org/community/wiki/classloadingconfiguration

I have to configure ejb-jar.xml and jboss.xml of ejb A with references to ejb b.

So, these are my configuration files:
ejb A = TISService
ejb B = GTSService

ejb-jar.xml of ejb A


jboss.xml of ejb A



This is the code I am using to lookup ejb B from a class in ejb A (taken from an example in the JBoss UserGuide):



The problem is that the lookup fails.

If I try to lookup the JNDI name of the EJB, the lookup succeed, but the create fails with "Invalid invocation, check your deployment..." because it is trying to create an instance of ejb B that is in an isolated ear.


Can someone help me?

Why the lookup of the ejb-ref-name fails, even if I saw that is present in the JNDI tree of ejb A ?รน

How should I use ejb-ref with jboss ?

Thanks.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic