Advertisement
Guest User

Untitled

a guest
May 27th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. Added this to Common.xsd:
  2. <xsd:simpleType name="Output">
  3. <xsd:restriction base="xsd:string">
  4. <xsd:pattern value="(.*)"/>
  5. </xsd:restriction>
  6. </xsd:simpleType>
  7.  
  8. Then I changed the "type" for OutputField in Rules.xsd to "sxi:Output", like so:
  9. <xsd:element name="OutputField" type="sxi:Output" minOccurs="1" maxOccurs="1" default="Omit"/>
  10.  
  11. But the following line is still unhappy in my CONTRACT1.xml config:
  12. <sxi:OutputField>12</sxi:OutputField>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement