Status code 500 during upload multipart entity image to server in android code
Html form: (can add successfully image to server)
Try this may help you
File file = new File(Environment.getExternalStoragePublicDirectory( Environment.DIRECTORY_DCIM).toString() + "/Camera/Test.jpg"); entity.addPart("picture", new FileBody(file,"image/jpg")); //Update here