xstream is pretty flexible, take a look at the Converter examples to see how you can tweak the output. If what you want is vastly different than your object model, you can either create a adapter object model that takes data from iBATIS or use some kind of xml transform.
We use stx, which is a small project, but the app is really fast and light on memory, for streaming xml transforms. When you've got gigs of xml, any kind of in-memory tree transform (xslt) won't do. Cheers, topher On Thu, 2007-03-15 at 19:36 -0700, netsql wrote: > In the past I allways returned arraylist of hashmap and that works > EXCLENT. > > I now want to return xml. I saw some notes on xstream and it works but > not so well, I do not like the xml it makes. > > Is there snipets or more ideas to help me? > > tia, > .V