我正在尋找一種方法來刪除我的SOAP響應周圍的信封。該數據是在JSON中,但沒有真正的級別,所以如果我可以刪除信封我知道我可以解析它,因爲我把數據放入一個JSON文件,並得到解析器爲它工作。當我從服務器獲得響應時,唯一的問題是圍繞數據的信封。新手IPhone刪除肥皂信封
我看了很多,但不能找到答案。任何幫助和示例代碼表示讚賞!
這是
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<AuthenticateUserResponse xmlns="http://tempuri.org/">
<AuthenticateUserResult>{"isValid":true,"isContractor":false,"isExpired":false,"isApproved":true,"userID":"e2be94cb-2e74-4eae-91a9-d874735b8647","userType":"DUMP ","trucks":1}</AuthenticateUserResult>
</AuthenticateUserResponse>
</s:Body>
</s:Envelope>
我期待這個拉我的SOAP響應。
{"isValid":true,"isContractor":false,"isExpired":false,"isApproved":true,"userID":"e2be94cb-2e74-4eae-91a9-d874735b8647","userType":"DUMP ","trucks":1}
我可能會採取一個錯誤的方法,但任何幫助,非常感謝。
謝謝你的工作。 – mike