• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Which interface is used Remote or Local?

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
If i define both Local and Remote interfaces for a EJB which one is used when i try to invoke it through
a) Java client
b) Another EJB in same server
What are rules for this

Sunil
 
Ranch Hand
Posts: 390
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does the spec allow one to define both local and remote interfaces for a particular bean?
Remember the definition of the interfaces depends on what you feed to the entity tag on your ejb-jar.xml. Is it allowed to feed the tag with both remote and local interfaces?
 
Ranch Hand
Posts: 93
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think it is. You can use define the remote and local interfaces for an EJB (Except for a MDB).
Which interface you would use depends on your client. If your client is a remote client (distributed away from the container) e.g some web tier component deployed on a web server that is not co-located with the application server, you would use the remote interface and RMI /IIOP for invocation. But if your client is a local client e.g Session Facade accessing an EntityBean, you would use the local interface . Or the container may make some optimizations that end up with the local interface being used.
You can expose both the remote and the local client view, it depoends on the type of the client which view will be used.
Hope this helps.
Akasmat.
reply
    Bookmark Topic Watch Topic
  • New Topic