If all you want to do is pass an object from flow to transformer, as David suggested I believe you can just stick it in the request and pick it up using the getRequest().getAttribute() method of the transformer.
I've been successful doing this with a session object (by calling getRequest().getSession().getAttribute()). It seems like it should work just fine with request scope. --- Sandor Spruit <[EMAIL PROTECTED]> wrote: > Jorg Heymans wrote: > > Sandor Spruit wrote: > >> > >>At some point, my 'stuff' seems to be converted to > a String. Can I have > >>Java Objects of arbitrary types instead, > somehow??? > > > > IIRC passing custom objects from flow is not > supported (yet?). I had a > > similar situation a while ago, i ended up sticking > the Map in the > > request scope. > > Right, that's exactly what I didn't want to hear... > But thanks anyway > for keeping me from wasting time looking for > non-existant solutions :) > > Sandor > > ----------------------------------------------------------------------- > Information and Computing Sciences, Utrecht > University, the Netherlands > 'Content and knowledge engineering' > http://www.informationscience.nl/ > Personal coordinates: > http://www.cs.uu.nl/people/sandor/ > "... unthinkable surprises, about to happen, but > what they are - > it's not up to you, oh, it never really was." > (Bjork on Vespertine) > > --------------------------------------------------------------------- > To unsubscribe, e-mail: > [EMAIL PROTECTED] > For additional commands, e-mail: > [EMAIL PROTECTED] > > ____________________________________________________ Start your day with Yahoo! - make it your home page http://www.yahoo.com/r/hs --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
