我在xsd上定义了一个输入参数:
<xs:element name="value" type="xs:anyType" minOccurs="1" maxOccurs="unbounded"/>
使用SoapUI,我发送无效的日期时间为:
<value xsi:type="xs:dateTime" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema">NOT_VALID_DATETIME</value>
Web服务正在接收空值,而不是抛出异常。
如果收到无效的日期时间,我该怎么办才能强制执行异常?