Hi,

Before going to the Jaxb mailing list I would like to have your advice. I am
working with groovy and the following wsdl
http://webservices.daehosting.com/services/isbnservice.wso?WSDL

Whatever is the mean to generate the classes (wsdl2java or DynamicClient), I
always get a class that looks like this

@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "sisbn"
})
@XmlRootElement(name = "IsValidISBN13")
public class IsValidISBN13 {

    @XmlElement(name = "sISBN", required = true)
    protected String sisbn;

    public String getSISBN() {
        return sisbn;
    }

    public void setSISBN(String value) {
        this.sisbn = value;
    }
}

Is there a good reason for this generated class not to respect the JavaBean
conventions ?

Best Regards
Guillaume

Reply via email to