I have following xml response :
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:DealLookupResponse xmlns:ns2="http://www.starstandards.org/webservices/2005/10/transport" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xsi:type="xsd:anyType">
<Deal>
<CompanyNumber>CN7</CompanyNumber>
<DealNumber>111</DealNumber>
<RecordStatus>A</RecordStatus>
<SalesPersons>
<SalesPerson>
<RecordType/>
<SalesPersonID>CL1</SalesPersonID>
<Status>A</Status>
<SaleDate>20140806</SaleDate>
<SalesPersonName>CLOSER 1</SalesPersonName>
<IncentiveCommission>0.00</IncentiveCommission>
<TotalCommission>0.00</TotalCommission>
</SalesPerson>
</SalesPersons>
</Deal>
</ns2:DealLookupResponse>
When I unmarshal this xml to Java Object, I get all values of Deal object but SalesPersons has one element in the list and all the properties of this element are null. What am I missing?
My DealLookupResponse class is
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"deal"
})
@XmlRootElement(name = "DealLookupResponse", namespace="http://www.starstandards.org/webservices/2005/10/transport")
public class DealLookupResponse {
@XmlElement(name = "Deal", required = false)
Deal deal;
public Deal getDeal() {
return deal;
}
public void setDeal(Deal deal) {
this.deal = deal;
}
}
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Deal", propOrder = {
"companyNumber",
"dealNumber",
"recordStatus",
"salesPersons"
}, namespace = "http://www.starstandards.org/webservices/2005/10/transport")
public class Deal {
@XmlElement(name="CompanyNumber")
String companyNumber;
@XmlElement(name="DealNumber")
String dealNumber;
@XmlElement(name="RecordStatus")
String recordStatus;
@XmlElementWrapper
@XmlElement(name="SalesPerson")
List<SalesPerson> salesPersons;
}
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "SalesPerson", propOrder = {
"recordType",
"salesPersonID",
"status",
"saleDate",
"salesPersonName",
"incentiveCommission",
"totalCommission"
}, namespace = "http://www.starstandards.org/webservices/2005/10/transport")
public class SalesPerson {
@XmlElement(name="RecordType")
String recordType;
@XmlElement(name="SalesPersonID")
Long salesPersonID;
@XmlElement(name="Status")
String status;
@XmlElement(name="SaleDate")
Date saleDate;
@XmlElement(name="SalesPersonName")
String salesPersonName;
@XmlElement(name="IncentiveCommission")
Double incentiveCommission;
@XmlElement(name="TotalCommission")
Double totalCommission;
}
My unmarshalling code looks like this :
JAXBContext jc = JAXBContext.newInstance(DealLookupResponse.class);
Unmarshaller unmarshaller = jc.createUnmarshaller();
DealLookupResponse je = (DealLookupResponse)unmarshaller.unmarshal(xmlInputSource);
What You Currently Have
Since you haven't specified a
name
on the@XmlElementWrapper
annotation you wil get the default behaviour.This means it will correspond to the following XML:
How To Fix It
You need to change the
@XmlElementWrapper
annotation on thesalesPersons
field to be the following:Debugging Tip
When you experience problems unmarshalling, populate your object model and then marshal it to XML. Then compare this XML to the XML you are unmarshalling to see if there are any differences.