SAXFilter filter = new SAXFilter(contentHandler, lexicalHandler, namespaces);
// Allow the basics for XML
filter.allowElements().allowIgnorableWhitespace().allowCharacters().allowCDATA().allowPrefixMappings();
SAXOutputter outputter = new SAXOutputter();
outputter.setContentHandler(filter);
outputter.setLexicalHandler(filter);
outputter.output(dissemination);
} catch (JDOMException jdome) {
throw new WingException(jdome);
} catch (AuthorizeException ae) {
// just ignore the authorize exception and continue on with
//out parsing the xml document.