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

session data in business tier

 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
In an older post the following has been recommended: BD->SFSB->SLSB, i.e. stateful session facade. My question is how to pass on the session data? Would you just <b>pass session data as argument to all SLSB calls that need it?</b> In my case, I just need to pass on the Customer and Itinerary primary keys to the payment processor, etc.
BTW, some people suggested BD->SLSB->SFSB and SLSB would get the handle to the SFSB from web tier. This is clearly not something I would want to do....

thanks,
Andrew
 
Greenhorn
Posts: 10
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I agree with your earlier approach. I have no idea how SLSB could get data from the web tier. I think it is much more direct for SFSB to call SLSB. BTW, I had raised this question earlier in my post. Is everyone in agreement about this kind of usage i.e. BD->SLSB for Travel agent and BD->SFSB->SLSB for customers seems to be an ideal approach. Comments?
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic