| Author |
Usage of JSPs and Servlets in different technologies
|
Piotr Nowicki
Ranch Hand
Joined: Jul 13, 2010
Posts: 610
|
|
Howdy Ranchers!
I'm just curious - we have a Servlet and its subclasses like HttpServlet. The latter one is about 99% of all the Servlets implemented.
My question is: what about the missing 1%? What are those Servlets? Do you know any real-life examples of Servlets which works on different protocol than HTTP?
Secondly, there is a JspContext and PageContext. The latter one is used in Servlet environment and is quite popular.
The question is similar to the first one: do you know any real-life examples of JSPs and ELs used in different environment than Servlets? What environment could it be?
Cheers!
|
OCP Java SE 6 Programmer, OCM Java SE 6 Developer, OCE Java EE 6 JSPSD, OCE Java EE 6 EJBD, OCE Java EE 6 JPAD, Spring 3.0 Core Professional.
|
 |
Abhay Agarwal
Ranch Hand
Joined: Feb 29, 2008
Posts: 693
|
|
Regarding Servlet and HTTP Servlet question, I can think of other protocols like SMTP or FTP. For these protocols, you can implement Servlet interface or extend GenericServlet to provide FTP specific protocol implementation.
http://www.coderanch.com/t/361522/Servlets/java/GenericServlet-FTP - as mentioned in earlier post, we may write FTP servlet but we may not have a servlet container for it to run as Tomcat Servlet container is only customed to handle HTTP servlets.
~ abhay
|
 |
 |
|
|
subject: Usage of JSPs and Servlets in different technologies
|
|
|