1
我試圖用一個空InvestorID
場發送以下XML請求,但得到一個錯誤回來的響應:在XML傳遞空值和XSD模式驗證
「模塊不符合活動的輸出模式,初始值爲「」是無效相對於簡單的類型定義InvestorIDType」
<tns:Investor>
<tns:InvestorId/>
<tns:firstName>FirstName</tns:firstName>
<tns:lastName>LastName</tns:lastName>
<tns:dateOfBirth>1970-01-01</tns:dateOfBirth>
</tns:Investor>
如果我簡單類型的模式值([0-9]{10})?
允許空字段? (如下所示)
<simpleType name="InvestorIDType">
<restriction base="string">
<pattern value="([0-9]{10})?" />
</restriction>
</simpleType>
謝謝你,我是新來的XML/XSD,只是在需要我的地方模式將允許一個空領域的一些確認。我會研究它是否可能傳遞一個空格字符,但我沒有意識到 – Martin