• 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

Calling business delegate from session bean. possible?

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have two business delegates X,Y and two session beans A,B. The calls to the business delegates are going through Action class seperately. I was asked to refactor the design. Now, from the Action class, I dont want to have two calls (all the way from action to the session bean to the Database) for a single request. I cannot change delegates or session beans. What I am thinking is making a call from the session bean A to session bean B through Delegate Y. is it possible? is it a good design?
reply
    Bookmark Topic Watch Topic
  • New Topic