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

I need a schema that validates both soap 1.1 and 1.2 how can I do it ?

share|improve this question

1 Answer

up vote 1 down vote accepted

No you can't. The two versions have different namespaces (http://www.w3.org/2003/05/soap-envelope and http://schemas.xmlsoap.org/soap/envelope/), respectively. A schema can only have a single target namespace.

It would be better if you obtained both schemas, and then set up a parser with a schema cache or a catalogue that will pick out the right schema given the namespace.

share|improve this answer
what about substitution group ? will it work ? – Gady Jun 19 '10 at 10:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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