soapUI を使用して SOAP メッセージをテストするとき、次のフォームのようにフィルターを Web サービスに送信します。
<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サービスがエラーを返します。ステートメントの解析が間違っている可能性がありますが、記号「<」の正しい書き方がわかりません。誰か助けてもらえますか? ありがとう。