GithubHelp home page GithubHelp logo

Comments (6)

syshex avatar syshex commented on August 14, 2024

As for following the redirect automatically, I don't believe so. Maybe someone on the list will reply with a more definitive answer.

As for the handling of that exception, I believe that a http code other than 200 will throw a HttpResponseException (which extends from IOException) .

That HttpResponseException has the method getStatusCode that returns the int http code that the server returned. This should allow for handling the problem inside the catch statement, depending on the server error code.

hope this helps

from ksoap2-android.

 avatar commented on August 14, 2024

Thanks for the reply in a short period of time. But as I am using KSoap as a library I am not much informed about what is going behind the scene. It will take some time for me to understand your answer. But I will be thankful if I get either more definite or a simpler answer.

from ksoap2-android.

syshex avatar syshex commented on August 14, 2024

A small example may help :

    try {
        ht.call(SERVER_SYNC_METHODNAME_ACTION, envelope);
        SoapObject received = (SoapObject) envelope.getResponse();

    } catch (SoapFault e) {
        throw e;
    } catch (HttpResponseException e) {
        if ( e.getStatusCode() == 301 ) {
             //DO SOMETHING SPECIAL HERE
        } else
            throw e;
    } catch (IOException e) {
        throw e;
    } catch (XmlPullParserException e) {
        throw e;
    }

from ksoap2-android.

 avatar commented on August 14, 2024

ok thanks for the explanation. There is a problem that the exception " java.io.IOException: HTTP request failed, HTTP status: 301" is not caught under "HttpResponseException" but goes into the IOException block. is it possible?

from ksoap2-android.

robocik avatar robocik commented on August 14, 2024

First of all I would advice you to use the latest version of ksoap2 library (v3.6 ) because HttpResponseException class has been introduced in version 3.5 so probably in your older version you don't have access to http response code (and to HttpResponseException). When you update ksoap2 library then you should be able to use solution mentionen by syshex

from ksoap2-android.

mosabua avatar mosabua commented on August 14, 2024

No changes on this - closing as part of clean up.

from ksoap2-android.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.