I am getting the subjected error, could you please help

servlet

public class FirstClass extends HttpServlet {

private static final long serialVersionUID = 1L;

public void doGet(HttpServletResponse response, HttpServletRequest request) throws IOException, ServletException {
    PrintWriter out = response.getWriter();
    out.println("this is a sample");
    out.flush();
}

public void doPost(HttpServletResponse response, HttpServletRequest request) throws IOException, ServletException {
    PrintWriter out = response.getWriter();
    out.println("this is a sample");
    out.flush();
}

}

web.xml

http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"> hii

<servlet>
    <servlet-name>First</servlet-name>
    <servlet-class>test.FirstClass</servlet-class>
</servlet>

<servlet-mapping>
    <servlet-name>First</servlet-name>
    <url-pattern>/first.do</url-pattern>
</servlet-mapping>

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>

index.html

Insert title here Click Me

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

You've got the parameters the wrong way round - it should be the request first, then the response, like this:

public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException {

So currently you're not actually overriding the superclass method.

This is why the @Override annotation is so important - it lets you find bugs like this at compile time. If you'd decorated your method with @Override, the compiler would have spotted that you were trying to override a method signature which didn't exist.

link|improve this answer
Yes... for example the call is doGet(Request,Response) on java Google AppEngine – Paul May 4 '11 at 6:46
thanks...will take care for further, problem solved – Akhilesh Kandwal May 4 '11 at 6:47
feedback

Does it also fail for POST?

shouldn't <servlet-class>test.FirstClass be <servlet-class>FirstClass instead ?

link|improve this answer
test is the package where class is defined – Akhilesh Kandwal May 4 '11 at 6:44
Hmm, that part should be ok. I also suspect the calling order Jon mentions. If the calling order is wrong, POST won't work. – Paul May 4 '11 at 6:48
ya i correct it..thanks – Akhilesh Kandwal May 4 '11 at 7:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.