Guest User

Untitled

a guest
Aug 21st, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. how to specify external schema in processContents=lax
  2. <xs:element name="detail">
  3. <xs:annotation>
  4. <xs:documentation>
  5. </xs:documentation>
  6. </xs:annotation>
  7.  
  8. <xs:complexType>
  9. <xs:sequence>
  10. <xs:any processContents="lax" minOccurs="0" maxOccurs="unbounded"/>
  11. </xs:sequence>
  12. <xs:anyAttribute processContents="skip"/>
  13. </xs:complexType>
  14. </xs:element>
  15.  
  16. <detail>
  17. <drawing>
  18. <name="test"/>
  19. </drawing>
  20. </detail>
  21.  
  22. <detail>
  23. <icon>
  24. <icon_name="testIcon"/>
  25. <icon_image="iconImage.jpg"/>
  26. </icon>
  27. </detail>
Add Comment
Please, Sign In to add comment