}
public static void tableToSAX(DocumentTable table, ContentHandler handler) throws DTSMException {
if ( table != null ) {
try {
SAXProducer sp = new SAXProducer(table, handler);
sp.process();
}
catch ( DTSMException e ) {
throw e;
}
catch ( Exception e ) {