-2

Hi Want 使用 ksoap2 在 Android 中显示肥皂网络服务。我正在使用以下代码。当我在 Soap Ui Pro 中进行测试时,它显示输出 xml 很好。

httpTransport.call(SOAP_ACTION, envelope);
Object result = (Object) envelope.getResponse();
System.out.println("The Result"+result);

但我在我的 Eclipse Logcat 中遇到了异常,如何在 Android 中克服这个问题

例外 :

05-25 15:13:15.105: WARN/System.err(1160): org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://www.w3.org/2001/12/soap-envelope}Envelope (position:START_TAG <{http://schemas.xmlsoap.org/wsdl/}wsdl:definitions targetNamespace='urn:sap-com:document:sap:soap:functions:mc-style'>@1:686 in java.io.InputStreamReader@40546438) 
05-25 15:13:15.115: WARN/System.err(1160):     at org.kxml2.io.KXmlParser.exception(KXmlParser.java:273)

请帮我。

4

2 回答 2

0

使用以下代码:-

try {
    httpTransport.call(SOAP_ACTION, envelope);
    sb.append(httpTransport.requestDump);
} catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
} catch (XmlPullParserException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}


InputSource inStream = new InputSource();
inStream.setCharacterStream(new StringReader(sb.toString()));

如果您有任何疑问,请告诉我。

于 2012-05-25T11:04:13.350 回答
0

您实际上得到了InputStream作为响应,您只需将其转换为字符串,然后您就可以显示它。

于 2012-05-25T10:00:21.297 回答