当前位置: 代码迷 >> 综合 >> ksoap2 org.xmlpull.v1.XmlPullParserException: Unexpected token (position:TEXT --uuid:
  详细解决方案

ksoap2 org.xmlpull.v1.XmlPullParserException: Unexpected token (position:TEXT --uuid:

热度:26   发布时间:2023-12-12 12:00:33.0

ksoap2调用webservice接口的时候报的错,网上找了很久的答案没找到,后来自己用SoapUI测试工具测了下,发现返回的数据居然是这样子的:

HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Content-Type: multipart/related; type="application/xop+xml"; boundary="uuid:8fe57e81-8d1d-49ef-9b77-99943e902643"; start="<root.message@cxf.apache.org>"; start-info="text/xml"
Content-Length: 516
Date: Thu, 03 May 2018 00:25:07 GMT--uuid:8fe57e81-8d1d-49ef-9b77-99943e902643
Content-Type: application/xop+xml; charset=UTF-8; type="text/xml";
Content-Transfer-Encoding: binary
Content-ID: <root.message@cxf.apache.org><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns2:putDocumentResponse xmlns:ns2="http://xxxx.com/"><LBEResult><message>失败</message><result>-2</result></LBEResult></ns2:putDocumentResponse></soap:Body></soap:Envelope>
--uuid:8fe57e81-8d1d-49ef-9b77-99943e902643--

真TM坑!body的结构并不是xml的格式,前后多了两串字符串,什么--uuid这个,导致ksoap2解析失败,服务端说不知道怎么改掉,只能放弃ksoap2了,改用HttpURLConnection自己请求接口,再用XmlPullParser解析数据,问题解决了。

  相关解决方案