Creating XML with JAXB KieServicesClient fails (KIE 6.5.0)
问题 I have an Object like this: @XmlRootElement(name="com.Operation") @XmlAccessorType(XmlAccessType.FIELD) public class Operation implements java.io.Serializable { static final long serialVersionUID = 1L; @org.kie.api.definition.type.Label("systemCode") @XmlElement private int systemCode; [...] When I marshall this manually with following code it seems it works well: [...] JAXBContext jaxbContext = DroolsJaxbHelperProviderImpl.createDroolsJaxbContext(classNames, null); Marshaller marshaller =