我有肥皂动作

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<From_Iphone xmlns="http://tempuri.org/">
<MessageText>string</MessageText>
<user_id>int</user_id>
<patientID>int</patientID>
<ReplyToMsgId>int</ReplyToMsgId>
<UserContacts>string</UserContacts>
</From_Iphone>
</soap:Body>
</soap:Envelope>


在此我想发送

 MessageText =@"Testing";
patientID= 10;
user_id= 20;
ReplyToMsgId=1;
UserContacts = @"< Contacts > < Contact >< id > 5 < /id > < name > Kiran< /name > < gr_id >11 < /gr_id> < /Contact> < Contact>< id>8< /id> < name>najeer< /name>< gr_id>25< /gr_id>< /Contact>< /Contacts>";


我将UserContacts作为字符串传递,但是我无法访问服务器。请给我一个将xml作为String传递的解决方案。
谢谢...

最佳答案

您必须为此使用标签。
在标签中,您必须放入您的xmlstring。
之间的字符串将不会被解析。我认为您的问题将得到解决。

http://www.w3schools.com/xml/xml_cdata.asp

休假上面的链接,它将帮助您

关于iphone - 如何将XML作为字符串发送到Soap Action?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7323052/

10-14 20:57