super.startElement(namespace, localName, prefix, attributes, context);
if (getValue() instanceof DataHandler) {
try {
DataHandler dh = (DataHandler) getValue();
StreamSource ss = new StreamSource(dh.getInputStream());
setValue(ss);
}
catch (IOException ioe) {
}
}