Hi all, I am trying to come up with a UML component model from the developer perspective about the interaction that happens when the web-server receives a request for a JSP page. I am using Apache web server with Tomcat 3.1 for servlet/JSP support. I understand that when there is a request like http://localhost:8080/sample.jsp, Apache web-server understand that the requested resource is a JSP page and forwards it to the Tomcat server for proper handling. What exact method and component of the web-server is conducting this action? When Tomcat receives the JSP page for the first time, it translates to a java class. Again which method of tomcat is responsible for this? The container, in this case tomcat, will generate JspPage and HttpJspPage interfaces. Every time a request comes to the JSP, the container generated _jspService() method is invoked to process the request. I can model the later part of the system but I need help to understand the about the particular methods involved in the first part of the process. Thank you in advance, Amar Das ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
