vote up 1 vote down star
1

When thinking about this question, I realized that this world could use a stylesheet that converts an XSD to a stylesheet, which would copy the contents of an XML file that roughly meets the specifications of the XSD into one that would be valid, according to the XSD.

Well, that's a bit too complex, so the challenge will be a bit simpler... (And this is a wiki, btw.) The trick is the following:

Write a stylesheet that extracts all information about elements from an XSD file, which it should use to create a new stylesheet which would copy an XML file node by node, using the correct order in which the nodes must appear in the XSD.

My first idea would be that the stylesheet would extract all elements from the XSD first to make templates for all of them. Then, for every child element, it would do an apply-templates for every direct child. And of course it copies the element itself straight to the output. (Including attributes and data.)

The result of the generated output should be identical to the input, with one exceptions: all elements would be in the correct order.

If such a stylesheet would exist, it would not only help the person from the other Q, but quite a few other XML developers too, who sometimes have to deal with XML files that are invalid simply because elements are in the wrong order.

In short, I want an XSLT that converts an XSD to an XSLT which will re-order an XML file into a new XML file, but with everything in the proper order.

flag
I cannot understand what you are trying to accomplish, and why the null stylesheet wouldn't do the job. Try posting examples of 'before' and 'after'. – bmargulies Nov 19 at 14:12
Simple. The XSD defines that element X should be before Y. The XML file has Y before X. So it should be re-ordered based on the order definition of the XSD. To do this, you could use a stylesheet. But instead of making this stylesheet myself, I think it's possible to have another stylesheet transform an XSD to a stylesheet that's able to re-order the "faulty" XML. – Workshop Alex Nov 20 at 11:17
For some particular schema, this is trivial. In general, it's quite hard, but I can imagine how I would write a program to read the schema and generate a stylesheet. I don't believe that it could be expressed in XSLT, and apparently no one else does either. – bmargulies Nov 21 at 18:42
It could be hard, yes. But I don't think it's extremely difficult for someone with good XPath/XSLT experience. – Workshop Alex 2 days ago

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.