I've been looking for a way to programmatically parse WSDL and associated XSD files to get values from annotation / documentation tags. I managed to get values from wsdl using wsdl4j, but how do i do this for XSD files? I tried to use XSOM but for some reason i always get null.

link|improve this question
Try using SAX Parser or post your code here so that someone can help you. – Shashank_Itmaster Apr 13 '11 at 3:31
exact duplicate! stackoverflow.com/questions/5632026/… – radkrish May 6 '11 at 6:19
feedback

2 Answers

You can attack the files with any XML parser (or jdom, dom4j, etc.). Simply select all documentation and annotations nodes to get the text (using XPath expressions) and inspect the parent nodes to see, what's documented or annotated.

link|improve this answer
feedback

get sources of JAX-WS http://jax-ws.java.net it includes xsd and wsdl parsers

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.