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

Reentrant stuff in SCBCD

 
Ranch Hand
Posts: 569
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just wondering if stuff related to reentrant would be tested in the exam?
 
Ranch Hand
Posts: 277
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I don't recall if there was a question on reentrant on my exam. To be on the safe side I recommend that you know that the only bean type that can be marked as reentrant are entity beans and that you indicate the whether an entity bean is reentrant through the required reentrant subtag of the entity tag in the deployment descriptor.
 
Ranch Hand
Posts: 329
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yeah I never found any question from INESystem 3 test exam or HFB mock exam or Real test.
 
author
Posts: 469
20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
As far as I remember I did see reentrance related question in the SCBCD Beta exam.
regards
ashish sarin
 
Ranch Hand
Posts: 1066
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Keith Rosenfield:
I don't recall if there was a question on reentrant on my exam. To be on the safe side I recommend that you know that the only bean type that can be marked as reentrant are entity beans and that you indicate the whether an entity bean is reentrant through the required reentrant subtag of the entity tag in the deployment descriptor.


1. Also by default, all entity beans reentrant property have their
value set to false in the DD.
2. If there is any re-entrant code in session beans, then either
EJBException or RemoteException will be obtained by the client.
 
Keith Rosenfield
Ranch Hand
Posts: 277
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Vish,

Originally posted by Vish Kumar:
1. Also by default, all entity beans reentrant property have their
value set to false in the DD


Are you certain of this? My thinking is that since reentrant is a required tag that there is no default value.
Just my 2 cents.
 
reply
    Bookmark Topic Watch Topic
  • New Topic