嗨所以我一直在搜索谷歌一段时间,但似乎没有一个可靠的例子。在过去的几天里,我一直在使用 android 的 webservice,我可以成功地从 android 传递参数并用 ksoap 将其使用回来,没有任何问题。但是现在我需要将一个数组传递给一个网络服务。所以这是我的示例网络服务:
[WebMethod]
public string Sample(string[] logs)
{
return array[0];
}
这是我需要生成的 XML:
<?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>
<Sample xmlns="http://MTKAndroidService.org/">
<array>
<string>string</string>
<string>string</string>
</array>
</Sample>
</soap:Body>
</soap:Envelope>
我已经坚持了一段时间了,希望有人可以帮助我。