Отклик WSDL клиента на Android

IBM предоставил замечательный обучающий материал о том как получить информацию с WSDL сервиса с устройства на Android Пример в указанной статье дает ясное представление о том, как работает KSoap библиотека. Но в процессе интеграции приведенного примера я обнаружил, что результат не возвращается так как указано в статье. Вот исправленный пример: package android.webservice.client; import org.ksoap2.SoapEnvelope; import… Continue reading Отклик WSDL клиента на Android

Android KSoap2 results serialization

In the previous post about working with WSDL on Android, I described mechanism, how to make a query. Now I found a very good possibility how to interpret the obtained results. This will be just an addition to the previous post. Our responce xml will be in the following view: Name1 Active Name2 InActive androidHttpTransport.call(SOAP_ACTION,… Continue reading Android KSoap2 results serialization

Android WSDL client response

IBM provides a wonderful tutorial how to access WSDL service from Android device Example provided in the tutorial gives clear understanding how KSoap library usage works. But during integrating this example in my project, I found that getting result is not working as described in the tutorial. Here is the fixed example: package android.webservice.client; import… Continue reading Android WSDL client response