| javax.servlet.http.HttpServlet com.salmonllc.servlets.AppServer
AppServer | public class AppServer extends HttpServlet (Code) | | This servlet is the entry point for all servlet based pages in the framework. JSP Pages do not use it.
It will handle get and post calls from the browser and direct them to the appropriate com.salmonllc.html.HtmlPage class
The page will be located through additional path info appended to this servlets URL.
Example: http://hostname/webapp/AppServer/app1/Page1
will load the page Page1 for the application app1.
The page should be a subclass of com.salmonllc.html.HtmlPageBase and should reside in a package named with the following convention:
[basepackage].applicationname
where [basepackage] is the value of the ApplicationPackage property in the properties file and applicationname is the name of the application specified in the URL.
Example: If the system properties file has the token: ApplicationPackage=com.mycompany.apps and the URL specified is: http://hostname/com.salmonllc.servlets.AppServer/app1/Page1 the class: com.mycompany.apps.app1.Page1 would be loaded.
If the class does not exist or isn't a subclass of com.salmonllc.html.HtmlPageBase the page manager will return an error to the browser.
dan
|
_doDumps | boolean _doDumps(Code) | | |
_schedulerStarted | boolean _schedulerStarted(Code) | | |
Methods inherited from javax.servlet.http.HttpServlet | protected void doDelete(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doHead(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doOptions(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doPut(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected void doTrace(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) protected long getLastModified(HttpServletRequest req)(Code)(Java Doc) protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException(Code)(Java Doc) public void service(ServletRequest req, ServletResponse res) throws ServletException, IOException(Code)(Java Doc)
|
|
|