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

I have an ajax request function (written in JavaScript) and Java Servlet that handles this request. I need to get all request parameters and if it succeeded then send back a confirmation that it has succeeded. How I can send a confirmation message? As an attribute, like {isSuccess: true}. My code:

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException,
    IOException {
    Enumeration<?> paramNames = request.getParameterNames();
    while (paramNames.hasMoreElements()) {
        String paramName = (String) paramNames.nextElement();
        // storing data fn
    }
    // how to send back a message here?
}
share|improve this question
Related: stackoverflow.com/questions/4112686/… – BalusC Nov 15 '12 at 12:36

1 Answer

up vote 1 down vote accepted

Get PrintWriter object by calling HttpServletResponse#getWriter and write your String.

response.getWriter().write("{isSuccess: true}");
share|improve this answer
thans a lot - it works – Bob Nov 13 '12 at 18:27
welcome, if you deem my answer correct, you should mark it "Accepted". – Subhrajyoti Majumder Nov 14 '12 at 7:00

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.