@Override
public HierarchicalStreamReader createReader(final InputStream in) {
try {
return createReader(new XmlHeaderAwareReader(in));
} catch (final UnsupportedEncodingException e) {
throw new StreamException(e);
} catch (final IOException e) {
throw new StreamException(e);
}
}