• 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

local vs remote

 
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Let's imagine that you did write two sets of interfaces, one for a local client view and one for a Remote client view.
You decide to expose both at deployment.

I don't understand when you have to use Remote and when you use Local.


Thanks
[ March 15, 2005: Message edited by: marcus don ]
 
marcus don
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ok, a local client means that both the bean and the client live in the same heap.
But living in the same heap means in the same jvm...
An instance of my app.server (i.e. JBoss) run in a process that use an instance of JVM.
So when the app. server generate a new instances of JVM?

I don't understand why I have different heap/jvm and why I use Local client with entity.

May you please help me?
 
blacksmith
Posts: 979
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Marcus,

Check out the following article
Local and Remote EJB Interfaces

I hope it answers your question, it
did for me

Cheers,

Gian
 
marcus don
Ranch Hand
Posts: 38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you !

 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic