RE: how's the jsp page compile into servlet

2003-09-02 Thread Sriram N
Manish: Tomcat is actually made up of a number of different units of funtionality. The "Tomcat" that you see is actually made up of Catalina - provides the servlet services Jasper - the JSP Page compiler Conectors - provides HTTP services and integration with web servers such as IIS, Apache, etc.

Re: how's the jsp page compile into servlet

2003-09-01 Thread Rainbow Expressions
Pl ask questions which are relevant to the program in which you are involved. Rainbow Expressions http://www.rainbowexpressions.com --- manish pandey <[EMAIL PROTECTED]> wrote: >hello sir , > i am new in ur list. i would like to answer that >how's a jsp page covert into a servlet and where is >

RE: how's the jsp page compile into servlet

2003-09-01 Thread Schalk
Manish As far as I know, and anyone please correct me on this if I am wrong, this is handled by the internal compiler within Tomcat and the .class is placed within web application scope. You can register a .jsp to act as a servlet and call it as if it is one. For instance on our website we includ