Hi,
Ia processing an email and saving some header inside a xml document. I also need to validate the document against a xml schema.
As the subject suggest, I need to validate ignoring the elements order but, as far as I read this seems to be impossible. Am I correct?
If I put the headers in a<xsd:sequence>, the order obviously matter. If I us the order is ignored but for some strange reason this imply that the elements must occur at least once.
My xml is something like this:
<headers>
<subject>bla bla bla</subject>
<recipient>
[email protected]</recipient>
<recipient>rcp02domain.com</recipient>
<recipient>
[email protected]</recipient>
</headers>
but I think the final document is valid even if subject and recipient elements are swapped.
There is really nothing to do?