adapter.parse(requestSource);
LOGGER.finer("just parsed: " + requestSource);
} catch (SAXException e) {
//e.getCause().printStackTrace(System.out);
//e.printStackTrace(System.out);
throw new WfsTransactionException(e,
"XML transaction request SAX parsing error",
getClass().getName());
} catch (IOException e) {
throw new WfsTransactionException(e,
"XML transaction request input error", getClass().getName());
} catch (ParserConfigurationException e) {
throw new WfsTransactionException(e,
"Some sort of issue creating parser", getClass().getName());
}
Request r = contentHandler.getRequest(req);
return r;
}