Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Good XML tools abound, but when it comes to creating (authoring) XSD files (XML schemas), things really don't look good.

Most XML editors do the basic: it let you create stuff, with menus for the proper elements. They don't HELP you in any way, though. A few tools have more advanced features, like creating an XSD based on a sample of XMLs.

Now, giving advice on good practice, or offering libraries of sample XSDs with wizards to customize them? I haven't seen it.

So, what do you consider the BEST XML schema authoring tool?

share|improve this question
What "HELP" are you looking for exactly? You basically have 3 options: create from scratch, create from examples, create from source code. I'd love to hear what people have to say about the various solutions and how they support these three methods. – bigredbob Mar 26 '10 at 9:35
@bigredbob A good tool would ideally have all of these options, though create from source code might be unusual. The first two, however, are a must of any good tool. – Daniel C. Sobral Mar 26 '10 at 23:03

closed as not constructive by bmargulies, Bill the Lizard Oct 3 '12 at 2:09

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

10 Answers

up vote 6 down vote accepted

I've tried XML Spy, Liquid XML, Serna XML, and oXygen XML Editor.

oXygen XML Editor wins hands down (Liquid is a close second). It easily infers sample XSD from XML and XML from XSD. The inferred XSD is created using spliced/divided XSD code that is easier to follow and more understandable. The various views are extremely useful (Text, Grid, Author, and Design). There is even a Documentation tool, which easily transforms all your hard work in to a well-documented pdf file.

share|improve this answer
1  
Its XML Spy or Oxygen. Both are nice and very well implemented. Both have Eclipse plugins if you prefer to stay in that IDE. – Mike Starov Dec 15 '10 at 19:12

XML Spy for me.

share|improve this answer

I like the Eclipse XSD editor (included e.g. in Eclipse for Java EE), though for me nothing beats generating the XSD from source code, if that is an option.

share|improve this answer
"though for me nothing beats generating the XSD from source code" - reminds me of chicken and egg, personally I'd rather have the spec first and then code, but I can see your perspective (working code, yeah I'd be happy to get a schema from that). – bigredbob Mar 27 '10 at 6:16
@bigredbob I don't think generating the XSD from code and writing the spec first have to contradict - often when persisting objects to XML you already have the spec: the classes in your language. In such a case the XSD is just a different format for the spec, which is often maintained in parallel with the code. Generating the XSD from the code in such a case can avoid that sort of duplication. – Fabian Steeg Mar 27 '10 at 19:18
The built in XSD editor is on of the worst. There is not click navigation. You have to go back to index every time. – Mike Starov Dec 15 '10 at 19:10

Altova's XML Spy has a nice feature set and a powerful GUI.

share|improve this answer

Liquid XML Studio can generate schemas based on multiple samples. It represents schemas graphically and enables editing both with drag&drop and context drop-down menus on the graphical representation as well as on the XML with auto-completion. It also comes with many validating schemas for various standards.

It does assume you know what you are doing, though, and has no wizards. At least on the community (free) version.

share|improve this answer
It bothered me to name a product in a question. I decided I shouldn't have done it and removed it to an answer. Since there are other answers already, it shouldn't look like I'm answering my own question. Because, truly, I'm not. This product is not what I'm looking for. – Daniel C. Sobral Feb 15 '10 at 14:09

The best one I've used so far is oXygen XML Editor. It's a little cheaper than XML Spy.

share|improve this answer
1  
After installing 5+ tools and trying VS08 and VS10, it's astounding to me that there aren't better tools for this. If you have to make a seriously complex XSD with types and enums it's horrendous to use any tool but Oxygen and even it could probably use a few tweaks. I'm amazed that there is such a gap in the market. – David Storfer Aug 12 '11 at 20:36

Xml Pad for me.

http://xmlpad.com/

share|improve this answer

Visual Studio has an XSD utility that does an adequate job of generating an xsd from an xml sample or a class or vice versa or most combinations of xsd, class and xml.

share|improve this answer

Having used several different XML tools, I prefer Stylus Studio.

share|improve this answer

Another vote here for the Eclipse XSD and XML Editor, the code completion is so familiar to what Eclipse developers are used to this means you can create your own templates for code-assistance.

The visual editor / diagrammer is also really clear.

share|improve this answer
1  
Optimally you should upvote the other answer and add a comment rather than adding a new answer. FYI, Folks can upvote comments also, so you can still get points for adding useful info as a comment. – studgeek Sep 17 '12 at 22:03

protected by bmargulies Oct 3 '12 at 1:07

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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