Description
The namespace value of @XmlElement should be "hello/name" and name value should be "name" in the wrapp bean HelloStringResponse.java which is genererated from the following SEI:
public class WebResultService {
@WebMethod(operationName="helloString", action="urn:HelloString")
@WebResult(name="name", partName="name", targetNamespace="hello/name")
public String hello(int age)
}
java2ws tool does not respect the @WebResult annotation to get the namesapce and value to generate the @XmlElement in the wrapper bean :
@XmlRootElement(name = "helloStringResponse", namespace = "http://cxf2936.fortest.tools.cxf.apache.org/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "helloStringResponse", namespace = "http://cxf2936.fortest.tools.cxf.apache.org/")
public class HelloResponse {
@XmlElement(name = "return")
private java.lang.String name;
public java.lang.String getName()
{ return this.name; }public void setName(java.lang.String newName)
{ this.name = newName; }}