Most voted "ksoap2" questions
A Java library for use on limited devices.
Learn more…19 questions
Sort by count of
-
8
votes3
answers1511
viewsHow to send an object via SOAP web service
To send a primitive data is simple, but when it comes to complex data as shown below, an exception is thrown: java.lang.Runtimeexception: Cannot serialize: Person{name=given, address=given etc...}…
-
3
votes1
answer3146
viewsHow to consume data from SOAP Web Service with android application?
I am developing an android application + web services SOAP + mysq, I was able to create the web services and make it run with the methods insert User and search I cannot make modifications using the…
-
3
votes0
answers124
viewsHow to return a specific field of a SOAP WEB SERVICE
I need to return a specific field of this web service: mainactivity class: package com.example.paulogabriel.test_app; import android.app.Activity; import android.os.Bundle; import android.view.View;…
-
2
votes0
answers110
viewsillegal Property webservice
I’m having a problem at the time of consuming my webservice. I have the following method (This method will return all users registered in the webservice that are in the database) User has (id,name):…
-
2
votes2
answers483
viewsWebservice + SOAP for android
Good morning, I created a web service with Soap and tested in the tool Soapui. In this tool works cool. In android to using Ksoap and when I have the data listed in Logcat it is popping an…
-
2
votes1
answer96
viewsksoup2 org.xmlpull.v1.Xmlpullparserexception:
I’m trying to make a query in the WEB SERVER implemented in PHP in this link. In the web service I have to send a request by passing the parameters Imei, password, operation. public class…
-
1
votes2
answers319
viewsHow to read multiple Soapobject from a Webservice?
I am trying to consume a Web Service in Java using Ksoap 2 in version 3.4.0. When I do a search without parameters it returns the expected result but when I do a search passing a parameter…
-
1
votes1
answer55
viewsAndroid consmindo web service Soap
I’m having trouble consuming a web service SOAP complex-type How could I submit this request, I am beginner in mobile development. <Autenticacao xsi:type="urn:Autenticacao"…
-
1
votes0
answers30
viewsError requesting the ID of a data in the database via the data STRING name
Good guys, I made a method in my webservice to get the ID of a value of a state, IE, I pass to function a name EX: "Acre" and it returns me the ID in the bank of that state. I did it, it worked cool…
-
1
votes0
answers26
viewsProblem to do to send a type Complex Soap
I’m making a method to update customer registration data, but when I go through this method I’m having trouble sending the object, someone has seen this problem? Follows the code: package…
-
1
votes0
answers919
viewsConsuming webservice Soap on android
I’m trying to consume a webservice but I’m in trouble. I already tested in soapUI and the webservice is perfect, the problem is time to consume in Android Studio. I got the following wsdl: This XML…
-
1
votes0
answers126
viewsError org.xmlpull.v1.Xmlpullparserexception: expected: START_TAG
Good night, you guys! I’m developing an android application that should connect with a c#webservice, but I’m having some problems connecting with my webservice. When I put the W3c webservice to test…
-
1
votes0
answers92
viewsGet XML properties answered from web services server
I am wanting to capture the values of XML properties answered by the server. public ArrayList<Carga> smbcRequest(smbc smbc) { //instanciando variaveis PropertyInfo req = new PropertyInfo();…
-
1
votes1
answer70
viewsHow can I parse an xml that has a vector within another vector?
I have a question about how I can parse an xml that the server is sending me. I can get the data up to the tag Cobranca after this tag has another array that I can’t catch. Follows the one part of…
-
0
votes2
answers474
viewsConsume PHP/SOAP Webservice on Android
I am developing an Android application that consumes a PHP webservice through ksoap2 library. I am currently consulting the webservice with a class that extends an Asynctask. Only because she does…
-
0
votes1
answer179
viewsKSOAP ILLEGAL PROPERTY
I made the webservice using Android and KSOAP, now I need to consume the webservice... The specified method needs to recover all users from the database (idusuario,username) Guys, I’m making the…
-
0
votes1
answer163
viewsSend object with android object list to SOAP web service in C#, using ksoap2
I send an object containing a list of objects, the web service recognizes the object but does not recognize the list. This is the source code: public RetornoDto GravarRecebimentoNf (NotaFiscal nf,…
-
0
votes1
answer291
viewsAndroid error with KSOP2 value Double java.lang.Runtimeexception: Cannot serialize:4.0
Guys I created a webservice Soap in java, I consume and perform operations in various methods, however when I will perform operations passing a double value occurs the following error:…
-
0
votes0
answers199
viewsConsume web service with SOAP using PHP
Good afternoon, I’m trying to consume a web service on SOAP TOTVS so far I have the following code. $soapParams = array( 'login' => 'xxxx', 'password' => 'xxxx', 'authentication' =>…