• 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
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

Valentin Crettaz's cheat sheets

 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Valentin,

I used your cheat sheets and found them very useful
Just a little curiosity (more than a question since I already passed the exam last week ) :
In the http://www.valoxo.ch/jr/BeanProviderResponsibilities.pdf file , basically your ejbcreate() , activate().. etc methods from the SessionBean or EntityBean interfaces , declare a RemoteException in their throws clause.
If I remember right , you cannot ever throw a RemoteException from within your Bean code.
Is this correct or I�m missing something ?
 
Author & Gold Digger
Posts: 7617
6
IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Victor,

I'm glad you found my cheat sheets useful. As for the RemoteException thing, only the following methods MUST NOT declare it:
- ejbCreate, ejbPostCreate, ejbHome, ejbSelect and the business methods of entity beans
- ejbCreate, and business methods of session beans

An if you look at the EntityBean and SessionBean API, you'll see that all methods have RemoteException in their throws clause even though their use is deprecated. I will probably remove them on the cheat sheets soon. Thanks for the feedback.

Hope this helps
 
Victor Barcan
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thank you Valentin for enlightened me.

 
Greenhorn
Posts: 17
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can we have ejbActivate & ejbPassivate declared to be throw RemoteException.
 
This tiny ad will self destruct in five seconds.
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic