it may sounds stupid but i would like to know whether is it possible send and receive. maybe image/XML file vai kSOAP?
相关问题
- How to parse Complex response with use of ksoap2 l
- KSoap-Android\JCIFS sends empty HTTP post
- ksoap2 : java.lang.IllegalArgumentException: size
- wsdl Soap request format for android
- Calling WCF Service with KSoap2 with complex objec
相关文章
- How To Pass A Parameters To AsyncTask (Ksoap2)
- Sending XML to a Web Service in Android
- java.lang.ClassCastException: org.ksoap2.serializa
- How to send a soap request in android?
- Get the IPaddress of the computer in an Android pr
- Web services stub generation + android
- Android Ksoap2 web service for download/Upload
- ksoap2 casting getResponse()
I have been able to transmit WebRowSet XML documents using kSOAP2.
http://roderickbarnes.com/blog/droid-chronicles-web-services-handling-complex-parameters
In this example I am sending an XML document from the web service to my Android based client. I hope this helps bro.
It is possible to send image via ksoap by following steps:
Image
intobyte[]
byte[]
of the image as propertynew MarshalBase64().register(envelope);
byte[]
as parameterThen receiving the message you can convert the receieved
byte[]
into image file.