I am a newbie to web technologies. While I am reading about jsp/servlet technology (more specifically get and post method) I found some limitations of get method -
- We can send fewer data with
get
method compared topost
method. - Get method only supports character data while post method supports binary data.
So I think I can send image to a server using post method. Please correct me if I'm wrong - Generally
get
method is used to get some data from the server/database.
Now my question is If get
method doesn't support binary data and get method usually used to receive data from server/database how the images/video file are displayed in browser?
Thanks