setProperties(transformer, objReader);
// attach the XSLT processor to the XMLReader
objReader.setContentHandler(transHand);
// parse and transform
objReader.parse(new ObjectInputSource(obj));
} catch (IOException e) {
Log.error(e);
throw new SerializerException(e.getMessage());
} catch (org.xml.sax.SAXException e) {
Log.error(e);