You will find here collection of JAVA, J2EE interview questions and answers. This blog includes topics like Core JAVA, Advanced JAVA, RMI, JDBC, JSP, Servlet, EJB, JMS. It has difference, comparison of java concepts. This blog will help freshers as well as experienced people to prepare for java, j2ee interview questions answers.
Saturday, April 10, 2010
Difference between GET Method and POST Method
GET Method
Target resource type is Active or passive
Type of data is Text
The amount of data handled by GET Method is not more than 255 characters.
Data is part of the URL and is visible to the user in the URL field of browser.
Data can be cached in the browser's URL History.
POST Method
Target resource type is Active
Type of data is Text as well as Binary
The amount of data handled by POST Method is unlimited.
Data is not a part of the URL and is sent as the request message body. It is not visible to the user in the URL field of browser.
No comments:
Post a Comment