vote up 0 vote down star

Hi Guys, I am in real trouble. I want to convert an XML schema (XSD) document into a tree like structure. Is there any straight way of doing it?

I used XMLBeans to parse the XSD document and tried to traverse the parsed document. But, handling the gory details of XSD was not easy. Thereby, I left that and searching for a much cleaner way.

Please help.

Thanks, Aatish

flag
2  
XSD's are XML, so they can be loaded into any DOM tree that supports XML parsing (pretty much all of them). It would helpful to know more specifically what you are trying to solve - is the problem just that XMLBeans require you to write more boilerplate code than you desire? – Not Sure May 8 at 18:53
1  
What exactly do you mean by "tree-like structure"? XML is already hierarchal, which by most definitions is tree-like. Are you talking about a visualization? – Welbog May 8 at 18:54
Yes. I am talking about visualization. Just like Tree structure of Swing where u can expand and collapse. – Aatish May 9 at 0:04
But, xsd schemas can be written in many ways like: I can define the element somewhere in the XSD and then just refer it using ref="" OR I can use name="" and this implicitly means that it is defined somewhere else. So, it becomes a bit tricky to traverse and place the right children under every parent. Also, I just know of these two techniques (i.e. using ref="" and name=""; maybe there are more than this. So, I am not able to write a fully functional conversion from XSD to JTree like representation of Swing. – Aatish May 9 at 0:30
Also, there can be same attribute names but in other elements. I was not able to handle all these. I had used a DOM Parser and its API to parse the XSD file and access children nodes, element, attributes, and other types. – Aatish May 9 at 0:30

1 Answer

vote up 0 vote down

try XSDViewer.sh or XSDViewer.bat from http://code.google.com/p/jlibs/

it shows the xsd in swing tree.

link|flag

Your Answer

Get an OpenID
or

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