I have an XSL and its XML output. Can I produce a sample input file using these? I need to see how the structure of the input XML needs to be.
|
You might get an idea of some of the original format, however it is likely that you will not be able to reconstruct the complete original. If the XSLT does not use part of the original XML in order to construct the output, you can't reconstruct the original structure. Additionally, if your XSLT is using templates correctly, it may be difficult to discern which templates were called when (and in particular how the original XML was processed). |
|||||
|
For any function Not all functions are bidirectional 1:1 mappings. The simplest example that comes to mind is:
So squaring isn't a bidirectional 1:1 mapping. Applying the reverse of squaring to Generally, if a function isn't a bidirectional 1:1 mapping, it is lossy, and not all information it has on input is present in (or can be deducted from) the result. In the case of squaring the information that is lost is whether the argument was positive or negative. There are functions that lose 100% everything, like the constants:
Typically an XSLT transformation is a function that transforms the source XML document to some output result. Generally such transformation is lossy (for example we often are told to discard/ignore some attributes or elements). Thus the answer whether the input to a transformation can be recovered from the output is generally negative. Even if not the exact input, but "a sample input" is necessary, this cannot always be produced and it will never contain the data that is lost by the transformation. |
|||||
|

f()function from A to B and a1, a2 from A and b from B: by definition you could havef(a1) = bandf(a2) = b– user357812 Dec 8 '10 at 13:44