2013-06-06 56 views
1

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

回答

0

您可以使用CDATA節來避免解析器解析內容。

+0

你是對的,非常感謝你。 – yangl

+0

yangl

1

例 Work_Date < = 20131230T000000Z

代替<與& LT替換它;或
而不是>用&替換它;做這份工作

謝謝EFrank

+1

可能會更好地使用該問題來生成您的示例 – DNKROZ