Re: transformers and SAX events

2003-06-18 Thread Lionel Crine
Can you be more explicit. You want to create a String from SAX events with your transformer and then send it to the next component? A transformer take SAX events on entry and return SAX events (using the SAX methods). But I you don't want to use the SAX methods, you can extends your transforme

transformers and SAX events

2003-06-17 Thread Dave Dearman
Hi everyone, I am creating my own transformer which extends abstractSAXTransformer. In the end I am left with a string of XML data. Is there a simple way to send this data in a SAX event to the next pipeline component? I do not want to have to parse it and send StartEvents, textEvents and endEve