Devon Manelski wrote:

> Hey Jim,
>
> One more thing.  If JSP is really the Servlet's object model, where can I
> get explicit documentation for the servelet object model?
>

How about the servlet specification?  It is at
<http://java.sun.com/products/servlet/download.html>.

You can also look at the Javadocs for the servlet and JSP APIs.

The key thing you need to know is the object types of the implicit objects that the
JSP page creates for you.  These are defined in the JSP 1.1 spec
<http://java.sun.com/products/jsp/download.html>, as follows (Section 2.8, p.
52-53):

    "request" is an instance of javax.servlet.ServletRequest
        or javax.servlet.http.HttpServletRequest (the latter is
        true for most servers)

    "response" is an instance of javax.servlet.ServletResponse
        or javax.servlet.http.HttpServletResponse (the latter is
        true for most servers).

    "pageContext" is an instance of javx.servlet.jsp.PageContext.

    "session" is an instance of javax.servlet.http.HttpSession.

    "application" is an instance of javax.servlet.ServletContext.

    "out" is an instance of javax.servlet.jsp.JspWriter.

    "config" is an instance of javax.servlet.ServletConfig


>
> Sorry to put this in two e-mails,  still have not had my coffee.
>
> TIA,
> Devon Manelski
> MCP
>

Craig McClanahan

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to