cancel
Showing results for 
Search instead for 
Did you mean: 

Content Filter - Stream Closed error

Former Member
0 Kudos
187

Hello,

i have created a Content-Filter for xml files. Within the filter i parse the file with SAX. Then i want to render this xml file with an XSLT Filter, but there i get always the error message: 'IOException: stream closed'. Any hints to solve the problem?

regards,

Marco

Accepted Solutions (0)

Answers (1)

Answers (1)

thilo_brandt
Employee
Employee
0 Kudos

Hi Marco,

if the stream is parsed through an steeam handle, ensure that the implementation of the handle does not close the stream. The stream should be reseted after the handler call, or you simply creat a new buffered stream (java.io.BufferedInputStream) containing the parsed data, which is than passed to the RF.

Regards,

Thilo