Android : org.xmlpull.v1.XmlPullParserException: unexpected type (position:TEXT PK

on Friday, August 22, 2014


using this code I try to receive a zip file frm webservice:



public Object GetComplex() {
SoapObject request = new SoapObject(Constants.MAIN_URL, METHOD_NAME);
for (NameValuePair prop : PARAMS) {
request.addProperty(prop.getName(), prop.getValue());
}
SoapSerializationEnvelope envelope = getSoapSerializationEnvelope(request);
envelope.setOutputSoapObject(request);
HttpTransportSE androidHttpTransport = getHttpTransportSE(Constants.MAIN_URL+PAGE_NAME);
Object javab = null;
try {
androidHttpTransport.call(Constants.MAIN_URL+METHOD_NAME, envelope);
javab = (Object)envelope.getResponse();

} catch (Exception e) {
if (Constants.DEBUG)Log.i(Constants.LOGTAG,"Exception Async = "+e);
e.printStackTrace();
}
return javab;
}


but when reach line androidHttpTransport.call(Constants.MAIN_URL+METHOD_NAME, envelope); javab = (Object)envelope.getResponse(); this error happens :



Exception Async = org.xmlpull.v1.XmlPullParserException: unexpected type (position:TEXT PK????????.^Eu...@5:163 in java.io.InputStreamReader@40568c00)


I know that web service receive my request, check it and then send a zipped file as responce, it can be seen in error : TEXT PK is start of zip file. It sound like ksopa try to open and treat it as XML, so this error happen. I know that this approach is not correct to receive zip file from ksoap, but I don.t have any better idea. Does any one have a solution?


0 comments:

Post a Comment