Migrating to CXF with Jaxb from xfire with agesi

2014-04-11 Thread virajn
I'm migrating my xfire soap project which uses aegis for databinding to cxf with jaxb. I got the new cxf project working for old xfire requests with aegis binding. But when i move the databinding to jaxb unmarshalling errror occurs. This is my cxf web service definition. bean

Re: Migrating to CXF with Jaxb from xfire with agesi

2014-04-11 Thread Daniel Kulp
JAXB, by default, uses unqualified elements whereas Aegis/XFire by default used qualified elements. Couple ways around that: 1) For every element, specify the namespace. @XmlElement(name = tag, namespace = http:...) likely easier: 2) Add a package-info.java with: