• 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
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

question about ejb-ref

 
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In SCBCD book by Paul Sanghera
Page42 (2.7.2 EJB references)

It says:

<ejb-ref-type> in <ejb-ref> elements must be session/entity.



My question are
1.why can't we refer MDB here?
As we don't have home and local interface for MDB
Am I correct?

2.I can use same <ejb-ref> element in web.xml as well as ejb-jar.xml
In web.xml (with <ejb-link> to avoid ambiguity and issues due to JNDI name changes
In ejb-jar.xml in the declaration on bean if it accesses some other bean
e.g. Here EJB1 referes EJB2 so EJB2 is added as <ejb-local-ref> entry.


<session>
<ejb-name>EJB1</ejb-name>
<local-home>com.ejbs.LocalHome1</local-home>
<local>com.ejbs.Local1</local>
<ejb-class>com.ejbs.EJB1</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>

<ejb-local-ref>
<ejb-ref-name>EJB2</ejb-ref-name>
<ejb-ref-type>Session</ejb-ref-type>
<local-home>com.ejbs.LocalHome2</local-home>
<local>com.ejbs.Local2</local>
<ejb-link>EJB2</ejb-link>
</ejb-local-ref>

</session>


Am I correct here?

Thanks in advance.

[ December 27, 2005: Message edited by: Meg Adal ]
[ December 27, 2005: Message edited by: Meg Adal ]
 
Ranch Hand
Posts: 187
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
About your first point:
<ejb-ref-type> in <ejb-ref> elements must be session/entity.

You are correct. Because there is no component interface, MDB can not be used in ejb-ref_type tag.
[ December 27, 2005: Message edited by: Devender Thareja ]
 
Ranch Hand
Posts: 372
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The ejb-ref tag can be used in both web.xml and ejb-jar.xml with the ejb-link element.

You use it in ejb-jar.xml if you do not know the real JNDI name of the EJB you are referring to. Hence, you cook up a fake JNDI name and annnounce it to the deployer through the ejb-ref tag in the DD so that the deployer can map the fake JNDI name to a real JNDI name during deployment. The ejb-link is optional and will be added by the application assembler if the EJB being referred to is part of the same jar file or the same application (means the EJB referred to is part of the same EAR / JAR file as the EJB referring to it). The ejb-link just helps in quick resolution of the EJB being referred to and the container would not depend on it

You can use the ejb-ref tag in exactly the same way if you are looking up the EJB from some web component (like a Service Locator or even a servlet). After all, some web component has to look up the EJB in a J2EE application, which would typically be a Service Locator. And again you have the same problem, you do not know the real JNDI name of the EJB, so you fake one and announce it in web.xml to the deployer
 
Ranch Hand
Posts: 116
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
one additional point:
<ejb-ref-name> defined in ejb-jar.xml is unique within that enterprise bean. (i.e Two different enterprise bean declarations can have the same ejb-ref-name without any name conflict).

Whereas the <ejb-ref-name> in web.xml must be unique in the whole web application.
 
B.Sathish
Ranch Hand
Posts: 372
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How can 2 EJB's have the same ejb-ref-name in an ejb-jar.xml? A particular ejb-ref-name will be mapped to a particualar EJB's real JNDI name right? That means, an ejb-ref-name in an ejb-jar.xml denotes a single EJB. You probably mean to say that different ejb-jar's in the same application can use the same ejb-ref-name?
 
Sankar Subbiramaniam
Ranch Hand
Posts: 116
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<ejb-ref-name> is bound to environment property java:comp/env. And as you know, each EJB has its own private namespace java:comp/env. So you can have duplicate ejb-ref-name in an ejb-jar.xml file. But <ejb-ref-name> has to be unique within the given enterprise bean declaration.

The following example would help:
An application has 4 EJBs: EJB1, EJB2, EJB3 and EJB4.
Lets say EJB1 references to EJB2 & EJB4. EJB3 references only to EJB4.

Then you can have a deployment descriptor like as follows:
//entity description for EJB1
<entity>
<ejb-name>EJB1</ejb-name>
....
<ejb-ref>
<ejb-ref-name>ejb/myEJB1</ejb-ref-name>
.....
<env-link>EJB2</env-link> [This is the ejb-name of EJB2]
</ejb-ref>
<ejb-ref>
<ejb-ref-name>ejb/myEJB2</ejb-ref-name> [This name cannot be myEJB1]
.....
<env-link>EJB2</env-link> [This is the ejb-name of EJB2]
</ejb-ref>
...
</entity>

//entity description for EJB3
<entity>
<ejb-name>EJB3</ejb-name>
....
<ejb-ref>
<ejb-ref-name>ejb/myEJB1</ejb-ref-name>
.....
<env-link>EJB4</env-link> [This is the ejb-name of EJB4]
</ejb-ref>
...
</entity>
...

As you can see from the above both EJB1 and EJB3 use the same <ejb-ref-name> "ejb/myEJB1" to refer to different EJBs (EJB2 and EJB4 respectively).

The key points to remember:
1) Each enterprise bean defined in an ejb-jar.xml gets its own private namespace: java:comp/env
2) <ejb-link> is used by application assembler to link the logical name (ejb-ref-name) to the actual referenced ejb.

Hope this helps.
 
Meg Adal
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you all for the replies.
 
Meg Adal
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Found one link which might be useful for the people reading this thread.

http://www.huihoo.com/jboss/online_manual/3.0/ch07s13.html
 
A berm makes a great wind break. And we all like to break wind once in a while. Like this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic