RE: Problem with including content from another action

2005-03-31 Thread Nidel, Mike
sday, March 31, 2005 8:58 AM > To: user@struts.apache.org > Subject: Problem with including content from another action > > > Suppose I have two actions: Action_A and Action_B. > Action_B only generates raw data for an jpg image. > From my Action_A I have to call Action_B seve

Re: Problem with including content from another action

2005-03-31 Thread Frank W. Zammetti
At the risk of starting up the old philosophical debate... You could just instantiate Action_B in Action_A and call execute yourself: Action actionB = new Action_B(); actionB.execute(m, f, r, r); I'm not sure exactly what your Action_B is doing, so maybe that won't work, but it's an option to co

Problem with including content from another action

2005-03-31 Thread Ide Mile
Suppose I have two actions: Action_A and Action_B. Action_B only generates raw data for an jpg image. >From my Action_A I have to call Action_B several times, and just pick up the >bytes needed to construct images. The problem lies in the fact that from Action_A I can't call Action_B directly, be