Is it best to create the component objects within the application, request
or session scope, instead of creating them 'on the fly' as it were.
It depends. If you have a stateless service component, you might as well instantiate it once and store it in application scope. If your component has state, you probably can't share it between requests - or maybe even between sessions - so you'd have to create it on the fly. All depends on what each component does...
Regards, Sean
--- You are currently subscribed to cfaussie as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED]
MXDU2004 + Macromedia DevCon AsiaPac + Sydney, Australia http://www.mxdu.com/ + 24-25 February, 2004
