Jijith Sivarajan wrote:

> hi
>     Can anyone tell me the various objects available in a jsp page(eg.
> request object, etc.) by default. Who creates these objects? If, the jsp
> engine creates these object, will there be any mismatch in the
> properties/functions of these objects.
>

They are created by the generated Java code for your page (it is converted into a
servlet) or library calls into the JSP engine's internal code.  Like any Java
code, you would get compile errors if there were any mismatches on the methods
supported -- the session object is required to implement HttpSession, and so on.

>
> Thanks
> - Jijith
>

Craig McClanahan

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to