Allow xsd shema file as a jaxb binding file to pass into JAXB schmeCompiler
---------------------------------------------------------------------------
Key: CXF-4135
URL: https://issues.apache.org/jira/browse/CXF-4135
Project: CXF
Issue Type: Task
Components: Tooling
Affects Versions: 2.5.2, 2.4.6
Reporter: jimma
Assignee: jimma
Fix For: 2.4.7, 2.5.3
This can pass some missed import schema files into jaxb with -b flag to
generate types classes from some MS wsdl files. Then we can use wsdl2java to
generate the follow wsdl with "wsdl2java -b
http://www.w3.org/2001/XMLSchema.xsd following.wsdl"
<wsdl:types>
<schema
targetNamespace="http://cxf.apache.org/w2j/hello_world_soap_http/types"
xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:x1="http://cxf.apache.org/w2j/hello_world_soap_http/types"
elementFormDefault="qualified">
<element name="sayHi">
<complexType/>
</element>
<element name="sayHiResponse">
<complexType>
<sequence>
<element ref="xsd:schema"/>
</sequence>
</complexType>
</element>
</schema>
</wsdl:types>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira