Example Servlet (from MageLang)
This servlet returns a page to the web browser:
public SampleServlet implements Servlet
{ private ServletConfig config;
public void init (ServletConfig config) throws ServletException
{ this.config = config; }
public void destroy ( ) { } // do nothing
public ServletConfig getServletConfig ( )
public String getServletInfo()
{ return “A simple servlet”; }