| Author |
Serving Servlets?
|
Len Padson
Ranch Hand
Joined: Nov 21, 2011
Posts: 40
|
|
|
Hello! I'm very new to servlets. If I have created a java server using a serversocket and sockets to send and receive http requests, I know how to send out html to clients. How would I go about sending a jsp page? Is there a java class for compiling the jsp code within an html page so that it is ready to send to clients? I would very much prefer not to have to use third party servers to serve my jsp.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56185
|
|
|
No, there is no user-callable implementation of the API that provides servlet and JSP capability. The Servlet and JSP APIs are interfaces that containers such as Tomcat and Glassfish implement. Why would you be trying to write your own?
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
 |
|
|
subject: Serving Servlets?
|
|
|