Vineet Sethi wrote:

> Hi
>
> I am looking for a good reference which will tell me in detail about the
> various objects .. request etc, their methods ... and all related details..
>

Because JSP builds on top of servlets, the place to start is the Servlet API
Specification version 2.2, which you can download from:

    http://java.sun.com/products/servlet

and the associated API documentation.  The "request" object that a JSP page sees,
for example, is a javax.servlet.http.HttpServletRequest, so it has all of the
methods that are listed in the API documents.

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