I\'m trying to unmarshal a simple xml document from a public api from Convio. I\'m not getting any compiler errors with the following code, but it won\'t produce a result ei
You could add a package level annotation (this is done on a class called package-info) and specify elementFormDefault="qualified", then you wouldn't need to qualify each @XmlElement annotation.
@javax.xml.bind.annotation.XmlSchema(
namespace="http://convio.com/crm/v1.0".
elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
package com.convio.crm;
For more information on JAXB and namespaces see: