// marshal to xml
String xml = marshal(ejbJar);
try {
// parse the xml
EjbJarDocument ejbJarDoc = convertToEJBSchema(XmlBeansUtil.parse(xml));
EjbJarType ejbJarType = ejbJarDoc.getEjbJar();
return ejbJarType;
} catch (XmlException e) {
throw new DeploymentException("Error parsing ejb-jar.xml", e);
}