Exception when call web service method
Opened this issue · 7 comments
GoogleCodeExporter commented
When you call the Web service exception occurs:
01-30 11:26:22.959: E/FMTN(20460): at
android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:59)
01-30 11:26:22.959: E/FMTN(20460): at
android.os.Handler.dispatchMessage(Handler.java:99)
01-30 11:26:22.959: E/FMTN(20460): at android.os.Looper.loop(Looper.java:130)
01-30 11:26:22.959: E/FMTN(20460): at
android.os.HandlerThread.run(HandlerThread.java:60)
01-30 11:26:22.959: E/FMTN(20460): Caused by:
java.lang.IllegalArgumentException: size <= 0
01-30 11:26:22.959: E/FMTN(20460): at
java.io.BufferedInputStream.<init>(BufferedInputStream.java:92)
01-30 11:26:22.959: E/FMTN(20460): at
org.ksoap2.transport.HttpTransportSE.call(HttpTransportSE.java:251)
01-30 11:26:22.959: E/FMTN(20460): at
org.ksoap2.transport.HttpTransportSE.call(HttpTransportSE.java:118)
01-30 11:26:22.959: E/FMTN(20460): Caused by:
java.lang.IllegalArgumentException: size <= 0
Original issue reported on code.google.com by budaevav
on 30 Jan 2014 at 7:28
GoogleCodeExporter commented
I'am analyze my problem. Exception created in method HttpTransportSE.call on
code like this:
if (status != 200) {
throw new HttpResponseException("HTTP request failed, HTTP status: " + status, status);
}
InputStream is;
if (gZippedContent) {
is = getUnZippedInputStream(new BufferedInputStream(connection.openInputStream(), contentLength));
} else {
is = new BufferedInputStream(connection.openInputStream(), contentLength);
}
}
catch (IOException e)
{
InputStream is;
if (gZippedContent) {
is = getUnZippedInputStream(new BufferedInputStream(connection.getErrorStream(), contentLength));
on server response header ContentLenght = 0, http response code = 413, then is
= getUnZippedInputStream(new BufferedInputStream(connection.openInputStream(),
contentLength)); throw IllegalArgumentException - if size <= 0.
Please check ContentLenght before create and read Buffer.
Original comment by budaevav
on 30 Jan 2014 at 9:45
GoogleCodeExporter commented
Ksoap v3.1.1
Original comment by budaevav
on 30 Jan 2014 at 10:00
GoogleCodeExporter commented
I committed a potential fix to master. Can you test it out?
Original comment by mosa...@gmail.com
on 30 Jan 2014 at 5:35
- Changed state: Started
GoogleCodeExporter commented
Yes. Where i can download bild or source to check it?
Original comment by budaevav
on 31 Jan 2014 at 7:32
GoogleCodeExporter commented
https://code.google.com/p/ksoap2-android/wiki/SourceCodeHosting?tm=4
Original comment by mosa...@gmail.com
on 14 Feb 2014 at 5:14
GoogleCodeExporter commented
[deleted comment]
GoogleCodeExporter commented
The project is migrating to github. If you believe this issue is still valid
and should be tracked please file a new issue at
https://github.com/simpligility/ksoap2-android/issues
Original comment by mosa...@gmail.com
on 7 Aug 2015 at 5:35
- Changed state: AwaitingContribution