• 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:

Doubt On Session Bean

 
Ranch Hand
Posts: 88
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

According to the specs nly one client can access a stateful seesion Bean at a time.If two client try to invoke the method on the same object concurrently then RemoteException is thrown if the client is Remote client and EJBException for the local client.

Does this apply for the stateless Session Bean as well?Is it possible that two client invoke method on the same stateless session bean instance concurrently ?

Thankx And Regards
Shiv
 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This restriction does not apply to a stateless session bean because the container routes each request to a different instance of the session bean
class.
 
reply
    Bookmark Topic Watch Topic
  • New Topic