Parsing XML schema java
问题 I need to parse XML schema (source can be wsdl file or xsd ) and extract all the complex types and their constituent elements with their types.. I have used JAXB (xjc)but it does not return me a list of all complexTypes . Which alternative (XSOM) should I use? I would prefer some built-in library in jdk6. ` <element name="BankLoanProcessRequest"> <complexType> <sequence> <element name="ClientId" type="int"/> <element name="LoanAmount" type="double"/> </sequence> </complexType> </element>` 回答1