If author.xml already exists like the desired xml file, then think
about using a reader instead  of generator and serializer.


Is a reader faster than a generator + serializer ?

Yes, and that is quite obvious if you know that a reader simply passes stream data through, while a generator generates SAX events, that are gathered and serialized to stream data again by a serializer.

If you don't need to do anything with the data, then use a reader.

Note that you can generate or aggregate internal pipes that use a reader themselves, but you cannot use a reader on an internal pipe that uses generate/serialize.

Regards,
Geert

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]