I Want to Pass null value from Soap UI for Datetime Field one option is that i should delete the tag . There is any other way where i can pass null or some other value in date field.
我想从日期时间字段的Soap UI传递空值一个选项是我应该删除标记。还有其他方法可以在日期字段中传递null或其他值。
<rt6:DateofBirth></rt6:DateofBirth>
2 个解决方案
#1
11
<rt6:DateofBirth></rt6:DateofBirth>
is not null, but empty String (not in all languages this is the same), use xsi:nil="true"
, so
<rt6:DateofBirth xsi:nil="true" />
where xsi namespace is xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
.
其中xsi名称空间是xmlns:xsi =“http://www.w3.org/2001/XMLSchema-instance”。
#2
1
General answer:
一般答案:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Add this to namespaces on root tag. Then add this property to tag
将其添加到根标记上的命名空间。然后将此属性添加到标记
xsi:nil="true"
E.g:
例如:
<vp1:DateofBirth xsi:nil="true"></vp1:DateofBirth>
#1
11
<rt6:DateofBirth></rt6:DateofBirth>
is not null, but empty String (not in all languages this is the same), use xsi:nil="true"
, so
<rt6:DateofBirth xsi:nil="true" />
where xsi namespace is xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
.
其中xsi名称空间是xmlns:xsi =“http://www.w3.org/2001/XMLSchema-instance”。
#2
1
General answer:
一般答案:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Add this to namespaces on root tag. Then add this property to tag
将其添加到根标记上的命名空间。然后将此属性添加到标记
xsi:nil="true"
E.g:
例如:
<vp1:DateofBirth xsi:nil="true"></vp1:DateofBirth>