• 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

Ejb and Network Protocol

 
Ranch Hand
Posts: 31
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Everybody,
In Which protocol Ejb is working ? I mean TCP IP or any Other?
Regards
Parhsuram
 
Saloon Keeper
Posts: 27808
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For software design purposes, it's done via Java Remote Method Invocation (RMI) and it's dangerous to look deeper, since you start becoming depending on server implementations.
TCP/IP the underlying protocol being used (at least on all the EJB systems I've worked with), but again, you shouldn't take advantage of that knowledge.
The one exception to that rule is that if you intend to access EJBs over a network, you want to make sure that the firewalls allow proper access.
reply
    Bookmark Topic Watch Topic
  • New Topic