当我使用soapUI测试soap消息时,我向我的网络服务发送了一个过滤器,就像这样:
<p_filter xsi:type="soap:filter" xmlns:soap="http://mfisoft.ru/voip/service/soap">
<!--You may enter the following 5 items in any order-->
<type xsi:type="xsd:string">cond</type>
<column xsi:type="xsd:string">total_current_balance</column>
<operator xsi:type="xsd:string">=</operator> **<!-- pls notice this line-->**
<value xsi:type="xsd:string">0.0</value>
</p_filter>
为了找到total_current_balance = 0的记录,它工作正常,但是当我将符号从“=”更改为“<”时,即
<operator xsi:type="xsd:string"><</operator>
Web服务返回错误,我想它可能会错误地解析语句,但我不知道如何正确写符号“<”,谁能帮助我?谢谢。