Tools generates @WebParam/@WebResult in wrong namespace
-------------------------------------------------------

                 Key: CXF-303
                 URL: http://issues.apache.org/jira/browse/CXF-303
             Project: CXF
          Issue Type: Bug
    Affects Versions: 2.0-M1
            Reporter: Dan Diephouse
             Fix For: 2.0-RC


If you look at the LocatorService class you'll see that the signature for the 
queryEndpoints method is like this:

    @ResponseWrapper(targetNamespace = "http://apache.org/locator/types";, 
className = "org.apache.cxf.testutils.locator.QueryEndpointsResponse", 
localName = "queryEndpointsResponse")
    @RequestWrapper(targetNamespace = "http://apache.org/locator/types";, 
className = "org.apache.cxf.testutils.locator.QueryEndpoints", localName = 
"queryEndpoints")
    @WebResult(targetNamespace = "http://apache.org/locator/types";, name = 
"endpoint")
    @WebMethod(operationName = "queryEndpoints")
    public 
java.util.List<org.apache.cxf.testutils.locator.QueryEndpointsResponse.Endpoint>
 queryEndpoints(
        @WebParam(targetNamespace = "http://apache.org/locator/types";, name = 
"select")
        org.apache.cxf.testutils.locator.QuerySelectType select
    );

Looking at the schema schema you'll see that the <element name="select"> is 
actually in the http://apache.org/locator/query namespace. The @WebParam should 
use this namespace instead I think. The @WebParam should be in that namespace 
too I think.

I ran into this while doing some refactoring. I will probably disable the 
LocatorServiceTest in the short term while we get this fixed.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to