Hi,
According To HTTP1.1 Specification Following Are The HTTP Methods.
GET,POST,PUT,DELETE,OPTIONS,TRACE,HEAD.
For Every HTTP Method There Is Corresponding doXXX()[ Example For GET There Is doGET() In HttpServletRequest Interface.] In HttpServletRequest Interface.
If The Form Method Is GET Container Calls doGet() On Requested Servlet Resource.
BUT THERE IS NO doConnect() Method.Servlet API Doesn't Support doConnect() EvenThough It Is HTTP1.1 Method.
Regards,
Prasad.