Response wrapper bean generation does not respect the @WebResult annotation
---------------------------------------------------------------------------

                 Key: CXF-2941
                 URL: https://issues.apache.org/jira/browse/CXF-2941
             Project: CXF
          Issue Type: Bug
          Components: Transports
            Reporter: jimma
            Assignee: jimma
             Fix For: 2.3


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) {
      return "Hello " + age + " to Web Service";
    }
}

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;
    }
}





-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to