/**
* starts generation of xml logfile for current process
*/
public void CreateXML() {
ExportXmlLog xmlExport = new ExportXmlLog();
try {
LoginForm login = (LoginForm) Helper.getManagedBeanValue("#{LoginForm}");
String ziel = login.getMyBenutzer().getHomeDir() + this.myProzess.getTitel() + "_log.xml";
xmlExport.startExport(this.myProzess, ziel);
} catch (IOException e) {
Helper.setFehlerMeldung("could not write logfile to home directory: ", e);
} catch (InterruptedException e) {
Helper.setFehlerMeldung("could not execute command to write logfile to home directory", e);
}