Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

sorry but I do not have the actual code with me, but I will try to explain:

I have a servlet mapped to the following:

/admin/*

So, this goes to a servlet:

public class AdminController extends MainController {
    public void doPost(HttpServletRequest request, HttpServletResponse response) {
        // Do stuf here
    }
}

Here is MainController:

public class MainController extends HttpServlet {
@Override
public void service(ServletRequest request, ServletResponse response) {
    String requesturi = ((HttpServletRequest)request).getRequestURI();
	reqlist = Arrays.asList(requesturi.substring(requesturi.indexOf(Util.rootPath) + Util.rootPath.length()).split("/"));
	reqlist = reqlist.subList(1, reqlist.size());

    doPost((HttpServletRequest)request, (HttpServletResponse)response);
}

So, the request is passed to AdminController, no problem, but then I reallized something:

The servlet is being called twice!. And this is causing me many errors..

Does anybody have a clue on this? It is because I used some kind of heritance? Thank you for all!

share|improve this question

2 Answers

up vote 8 down vote accepted

The HttpServlet.service method gets called for all request types and what you are seeing is a HEAD request and then a GET or POST request. Instead of implementing service just implement doGet or doPost. What is commonly done is to just implement one of doPost or doGet and then call the other from the one you don't have an implementation for.

share|improve this answer
You are the best, thank you for all. – José Leal Nov 27 '08 at 1:52

I solved same problem with simple way.

If you are developing local and access to your app with address http://127.0.0.1 which is loopback network, change address to http://localhost which is direct.

This problem won't happen if you actually run it on webhosting or server and access to it from outer network.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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