You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tests in error:
shouldAcceptValidXml(org.eaxy.usage.ValidationTest): cvc-complex-type.3.2.2: Attribute 'role' is not allowed to appear in element 'msg:recipient'.
The text was updated successfully, but these errors were encountered:
Thanks for reporting this. The issue was due to differences between the Java 1.7 parser (which was in my classpath) and Xerces 2.9.2, which was in Maven's.
There's a deeper problem here, though: I was trying to write an example of the form:
<msg:recipient msg:type="email" role="cc" />
The "role" attribute is unqualified. I was unable to write an XSD that Xerces would accept for this. Do you know enough about XSD to help?
Running org.eaxy.usage.ValidationTest
Tests run: 2, Failures: 0, Errors: 1, Skipped: 0, Time elapsed: 0.189 sec <<< FAILURE!
Tests in error:
shouldAcceptValidXml(org.eaxy.usage.ValidationTest): cvc-complex-type.3.2.2: Attribute 'role' is not allowed to appear in element 'msg:recipient'.
The text was updated successfully, but these errors were encountered: