我的黑莓应用程序收到以下错误:
org.xmlpull.v1.XmlPullParserException:expected"END_TAG</{http://schemas.xmlsoap.org/soap/envelope/}soap:Fault>@3:181 in java.io.InputStreamReader@d88bc808)
我正在使用 KSoap2 创建信封,当我收到响应时,我使用以下代码给我 XML,也许我不应该这样做(这段代码显然不完整):
String serviceUrl = WS_URL + Globals.theApp.getConnectionString();
String serviceNamespace = "http://www.mysite.com/";
String soapAction = "http://www.mysite.com/postMessage";
SoapObject rpc = new SoapObject(serviceNamespace, "postMessage");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.bodyOut = rpc;
envelope.dotNet = true;
envelope.encodingStyle = SoapSerializationEnvelope.XSD;
envelope.addMapping("http://www.mysite.com/", "Message", new Message().getClass());
PropertyInfo pinfo = new PropertyInfo();
pinfo.name = "myMessage";
pinfo.namespace = serviceNamespace;
pinfo.type = Message.MESSAGE_CLASS;
rpc.addProperty("Message", message);
HttpTransport ht = new HttpTransport(serviceUrl);
ht.debug = true;
String xmlResponse;
try
{
ht.call(soapAction, envelope);
xmlResponse = envelope.getResponse().toString();
SoapObject myResponse = (SoapObject)envelope.getResponse();
xmlResponse = ht.responseDump;
我正在使用 ht.responseDump 来获取 xml 字符串(因为在它没有发送回 XML 中的任何内容之前。)从那里我尝试解析 xmlResponse 等.....
但是我得到了那个错误,为什么?ht.responseDump 不是解决此问题的最佳方法吗?ht.debug 有什么作用??为什么我的 xml 被切断了?
提前致谢。我真的需要一些帮助。