How do they differ in action? Servlet print html only?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Servlet :
–is a web component
–it’s a powerful java technology
–managed by a container (namely web server such as tomcat) that generates dynamic content
–platform independent java classes (byte code)
–interacts with web clients as request response paradigm
–Request handling methods
Rest WS (Representational State Transfer Web Service)
–A way to achieving service oriented architecture in web application
–it’s an architectural concept
–web service resource is uniquely identifiable using URLS
–it has explicit relationship with HTTP methods namely GET,POST,PUT,DELETE
–highly re useable across the platform