Guest User

Untitled

a guest
Aug 15th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. Schema validation not trimming strings before validating
  2. <xs:schema ...>
  3. ...
  4. <xs:simpleType name="ItemTypeData">
  5. <xs:restriction base="xs:string">
  6. <xs:enumeration value="ItemA" />
  7. </xs:restriction>
  8. </xs:simpleType>
  9. </xs:schema>
  10.  
  11. ...
  12. <ItemType>ItemA</ItemType>
  13. ...
  14.  
  15. ...
  16. <ItemType>
  17. ItemA
  18. </ItemType>
  19. ...
Add Comment
Please, Sign In to add comment