I need to parse XML Schema (can be source wsdl file or xsd) and all complex types and their components Remove elements of their type .. I have used JAXB (xjc) but it does not return a list of all the complex types. Which option should I use (xsom)? I like some built-in libraries in JKK6.
` You can use JDOM or DOM4j - Here are the links - & lt; Element name = "BankLoanProcessRequest" & gt; & Lt; ComplexType & gt; & Lt; Sequence & gt; & Lt; Element name = "ClientId" type = "int" /> & Lt; Element name = "loan amount" type = "double" /> & lt; / Sequence & gt; & Lt; / ComplexType & gt; & Lt; / Element & gt; `
Comments
Post a Comment