我在我的Soap請求中有一個元素,如下所示。如何在XSD中定義包含正斜槓(/)的XML元素?
<Destination>abc/xyz</Destination>
這是失敗的XML模式驗證。我如何在XSD中定義它?
我已經定義如下,它似乎是不正確:
<xs:element name="Destination" type="Destination" minOccurs="1"/>
<xs:simpleType name="Destination">
<xs:restriction base="xs:string">
<!-- <xs:pattern value="*/*"/> -->
<xs:maxLength value="30"/>
</xs:restriction>
</xs:simpleType>
一些錯別字吧?你爲什麼期望一個名爲「directory」的元素對名爲「Destination」的元素聲明進行驗證? –