2
如何使用ksoap向肥皂添加前綴標記? 我想補充領域:xmlns:CNX = 「http://db.hutt.com」向soap請求添加xml前綴
<v:Envelope xmlns:cnx="http://db.hutt.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" xmlns:v="http://schemas.xmlsoap.org/soap/envelope/">
<v:Header>
<authentication xmlns:n0="http://db.hutt.com">
<userName>tutt</userName>
<password>[email protected]</password>
</authentication>
</v:Header>
<v:Body>
<cnx:get_tt xmlns="">
<ttid>1</ttid>
</cnx:get_tt>
</v:Body>
</v:Envelope>
編輯完您的請求後,它似乎是等同的。你想改變什麼? – KarelHusa
ttid元素可能不屬於名稱空間http://sdm.hott.com。您可以使用以下方法添加ttid元素:public SoapObject addProperty(String namespace,String name,Object value)並將該名稱空間設置爲空字符串。 – KarelHusa
@KarelHusa我編輯了這個問題。我可以看到標題不應該有一些標籤,而身體請求應該有標籤。 – kinkajou