After Reading a lot of articles, and tons of questions through stackoverflow, I am unable to find answer to my question or situation that I am having until now!
so, I have create an application that have many packages and activities, I used Volley library as a base framework for all my network operations. I successfully be able to retrieve data from server and images and everything is going fine.
I have now this issue: I want to be able to select image from gallery or camera (I also have this and successfully enabled in my application) but I need to post it to server, I really don't have an idea of posting images through server using json, although I can retrieve all images required (more than 100 images) but I still cannot post any to server.
I return to volley Volley presentation and try to understand everything said. but I see it is all about fetching data and not posting ..
so after trying some codes, I try to make volley request (string request) with httpclient (each one in separate) but I nothing work.
so if I need to post image to server, what is the best way? is it by using volley OR by using httpclient regular request within the same application? if it is volley, I've tried This Link and This Question and also this Question
I am very confused ! I am trying to understand this from 3 days and until now I cannot post image ! What should I do? did I miss something or there is something I misunderstand?
Any link or tutorial on this?
Sorry guys for not posting any code, because my tries were only to understand but didn't try any :(
EDIT- I did solve my issue and will share it with public soon ...