I think we have I serious problem with the lookup of components within flow scripts. Under load the component manager can become null!!!
Could somebody with more knowledge about this part of Cocoon have a look at it? TIA! Cheers, Reinhard > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, June 30, 2003 9:11 PM > To: [EMAIL PROTECTED] > Subject: cvs commit: > cocoon-2.1/src/scratchpad/src/org/apache/cocoon/components/flo > w/javascript/fom FOM_Cocoon.java > > > reinhard 2003/06/30 12:11:10 > > Modified: > src/scratchpad/src/org/apache/cocoon/components/flow/javascript/fom > FOM_Cocoon.java <snip/> > + public Object jsFunction_getComponent( String id ) { > + Object o = null; > + try { > + o = this.componentManager.lookup( id ); > + } catch (ComponentException e) { > + o = null; > + } > + return o; > + }