DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22217>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22217

NullPointerException in TransformerImpl.run() when reusing XMLFilter object





------- Additional Comments From [EMAIL PROTECTED]  2003-08-12 22:59 -------
As far as I understand the problem is about multiple transformations
from the same xmlFilter.
The exception could be repro if we add one line to UseXMLFilters
example
xmlFilter3.parse(new InputSource("foo.xml"));
+xmlFilter3.parse(new InputSource("foo.xml"));

If I recall correctly we had such discussion before.
We consider that as a wrong usage.
The correct method would be to create transformer and
to do multiple transformations like
transformer.transform(xmlSource,outputTarget);
transformer.transform(xmlSource,outputTarget);

I will verify if my understanding is correct.

In any case our documentation should be better.

Reply via email to