public void execute() {
try {
this.saxBeanWriter.write(this.bean);
} catch (IOException e) {
throw new ProcessingException("Fatal protocol violation", e);
} catch (SAXException e) {
throw new ProcessingException("Fatal XML error", e);
} catch (IntrospectionException e) {
throw new ProcessingException("Impossible to analyze input bean", e);
}
}