Hi
I've got a WS client using cxf 2.1.3, which works fine. One of my
requirements to to manually submit the XML(without the SOAP envelope) so I
was wondering how I can serialize my object (class created by wsdl2java).
Someone pointing me in the right direction would be great.
here's a snippet from the class
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"transmissionHeader",
"submissionContent"
})
@XmlRootElement(name = "IARSubmission")
public class IARSubmission {
@XmlElement(name = "TransmissionHeader", namespace = "
http://iar.on.ca/types", required = true)
protected TransmissionHeaderType transmissionHeader;
@XmlElement(name = "SubmissionContent", namespace = "
http://iar.on.ca/types", required = true)
protected SubmissionContent submissionContent;
@XmlAttribute(name = "version", required = true)
protected String version;
--
Marc Dumontier