Send ArrayListT from android to webservice asp.net

1

I am working with an asp webservice that receives me as a list parameter, in android I am using the ksoap2 library which does not support sending this type of parametyros without being patched before. Is there an alternative to this library or does anyone know how to patch ksoap?

    
asked by Ednieto1990 02.08.2016 в 16:52
source

2 answers

-1

After a lot of research, note that sending an arraylist with ksoap is very complicated and I found it easier to do a JSON which I converted into a string and receive it in this way in the webservice.

This way I was able to send 25,000 records from android to ASP.NET.

I hope this info is useful for someone else.

    
answered by 14.08.2016 / 04:47
source
0

ksoap2 does not support serializing arrays, the "patch" you need is:

link

**

  

The current version of kSOAP2, the Android library for   communication through SOAP, does not offer facilities to serialize   and deserialize complex objects. Also, the matrices are not   compatible.

**

    
answered by 02.08.2016 в 17:34