Sending Image in Base64 String and receiving in webservice via kSoap
问题 i am sending an image in byte[] and 3 strings to a webservice usingksoap but its not working for me , i am not sure where i am wrong, in sending image from Android and at receiving end, i am putting the code here kindly check it Here is how i am converting image to byte[] at client (Android) side Bitmap myBitmap = BitmapFactory.decodeFile(imgFile.getAbsolutePath()); ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream(); myBitmap.compress(Bitmap.CompressFormat.JPEG, 100,