public void go(DocListener document, InputSource is, InputStream tagmap) {
try {
parser.parse(is, new SAXmyHandler(document, new TagMap(tagmap)));
}
catch(SAXException se) {
throw new ExceptionConverter(se);
}
catch(IOException ioe) {
throw new ExceptionConverter(ioe);
}
}