Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to call a WSDL Webservice via Ksoap for my Android App. When I use SoapPrimitive, it works and I get the following String:

{"INGREDIENTS": [
    {
        "TEXT": "ohne Schweinefleisch",
        "KEY": "*"
    },
    {
        "TEXT": "mit Alkohol",
        "KEY": "11"
    },

......

and so on.. I would like to have only the "Text" in a ListView, but I don't know how I can realize that with SoapPrimitive.

And when I use SoapObject, I only get the following Exeption:

"java.lang.ClassCastException: org.ksoap2.serialization.SoapPrimitive cannot be cast to org.ksoap2.serialization.SoapObject"

Here is my Code:

 try {

        SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);

        SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
        envelope.dotNet=true;
        envelope.setOutputSoapObject(request);

        HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
        androidHttpTransport.debug = true;
        androidHttpTransport.call(SOAP_ACTION, envelope);

        SoapObject response = (SoapObject)envelope.getResponse();
        }

What's wrong? I looked since hours in the web, but i didn't find an answer.

share|improve this question

1 Answer

up vote 2 down vote accepted

Your response looks like a JSONArray of JSONObjects. You can parse it with built-in json library or use gson.

share|improve this answer
ok thanks, you mean something like this: Object result = (Object)envelope.getResponse(); JSONObject jObject = new JSONObject(result.toString()); – ph09 Jun 20 '11 at 14:26
In your case it should be JSONArray jArray = new JSONArray(result.toString());, but you got my point. – ernazm Jun 21 '11 at 7:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.