Description
Here is part of the SEI which is generated by wsdl2java -db xmlbeans
@ResponseWrapper(localName = "greetMeResponse", targetNamespace = "http://apache.org/hello_world_soap_http/types", className = "org.apache.helloWorldSoapHttp.types.GreetMeResponseDocument") @RequestWrapper(localName = "greetMe", targetNamespace = "http://apache.org/hello_world_soap_http/types", className = "org.apache.helloWorldSoapHttp.types.GreetMeDocument") @WebResult(name = "responseType", targetNamespace = "http://apache.org/hello_world_soap_http/types") @WebMethod public org.apache.xmlbeans.XmlString greetMe( @WebParam(name = "requestType", targetNamespace = "http://apache.org/hello_world_soap_http/types") org.apache.helloWorldSoapHttp.types.MyStringType requestType );
The tool should mapping the XmlBeans buildin type into the natural Java class, such as org.apache.xmlbeans.XmlString to String.