Monday, June 27, 2016

Java : doGet vs doPost


doGet vs doPost



In doget() method
  1. There is a security problems are arrival because when the user or client submit the form the associated user name or password has been display on the address bar.
  2.  client can send limited amount of data.
  3.  when the users tries to request for any Read Only data.
doPost() method
  1. when the user submit the form the associated user name or password are not display on the addressbar.
  2. client can send more then data.
  3.   used for Insertion /updation / deletion of data ,

No comments:

Post a Comment