where all the functionality which is done in servlets can be done by JSP
Where did that turkey come from?
JSP are a way to make servlets that is optimized for writing HTML pages. In case you have not noticed, there is a lot more to the Internet than HTML pages.
If you want to serve binary data - images, sound, zip files, etc. servlets are the method of choice. Not to mention all the services such as
SOAP that can be built on a servlet base.
Bill