androidHttpTransport.call(SOAP_ACTION,envelope)时的XmlPullParserException;叫做

时间:2010-02-24 17:36:22

标签: android web-services ksoap2

基本上我正在使用Android的kSoap2类。客户端应用程序正在使用Web服务。如果需要,我可以发布代码。

我四处乱窜来解决这个问题。我收到以下错误消息 预期:START_TAG {http://schemas.xmlsoap.org/envelope/}信封(posiiton:START_TAG @ 1:6 in java.io.InputStreamReader@437b40f0)androidHttpTransport.call(SOAP_ACTION,envelope);被称为。

到目前为止我收集的是“xml未正确解析或者没有来自Web服务服务器的响应。”有什么建议吗?

此外,当我尝试其他外部Web服务:http://www.deeptraining.com/webservices/GetWeather时,我收到:androidHttpTransport.call上的IOException(SOAP_ACTION,信封);

IOException消息:主机未解析,任何想法如何解决这个问题,这里我没有得到XmlPullParserException(可能会在修复后显示)。

谢谢,感谢您的见解和时间。

长香。

1 个答案:

答案 0 :(得分:0)

我有同样的问题,我解决了。我只写了一个错误的网址。 我有一个使用NUSOAP的PHP Web服务。

地址错误: private static final String URL =“http://www.mywebsite.com/service/myservice.php?wsld”;

正确的地址: private static final String URL =“http://www.mywebsite.com/service/myservice.php”;

我建议你检查你传递给ksoap2的参数,因为它工作正常。

再见。