當我使用的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服務返回一個錯誤,我想這可能解析錯誤的語句,但我不知道怎麼寫符號「<」正確,誰能幫我?謝謝。
你是對的,非常感謝你。 – yangl