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 a client that communicates with a server that returns a response(by a servlet) after waiting four seconds and then continue processing.

The problem is that the server response (200 OK) is returned at the end of all treatment and not after the 4-second pause. I don t understand why

Here is a snippet of my code

try {
        mimeTraitement.getMime(client);
        mimeTraitement.analyseMime(xmlDir);

        if (mimeTraitement.checkMime()) {

                System.out.println("Acquittement de la requete dans " + BeanParametrageTimers.getTimeWaitResponseOkToRequest()/1000+ " secondes");
                synchronized(response)
                {
                try {
                    response.wait(BeanParametrageTimers.getTimeWaitResponseOkToRequest());
                } catch (InterruptedException e1) {

                    e1.printStackTrace();
                }
            }

            writer.write("200 OK (MimeMultipart valide)");// this line is displayed after the processing of postXml.sendXml() on my java console 
            PostXml postXml = new PostXml(xmlDir,mimeTraitement.getGetUrl());
            System.out.println("Envoi du fichier xml dans " + BeanParametrageTimers.getTimeWaitSendXmlToRequest()/1000 + " secondes");
            Thread.sleep(BeanParametrageTimers.getTimeWaitSendXmlToRequest());
            postXml.sendXml();

        } else
            writer.write("400 POK (MimeMultipart non valide)");
    } catch (MessagingException e) {
        e.printStackTrace();
    } catch (InterruptedException e) {
        e.printStackTrace();
    }

Thank you very much

share|improve this question

2 Answers

Use writer.flush() to make sure the output will not be buffered.

share|improve this answer
thank you for your help , but it doesn ' t do anything. The response is still send at the end and not after response.wait() – user902509 Jul 16 '12 at 14:34

I think the response is getting committed because the buffer size has reached.

Find here Reasons for response getting committed

share|improve this answer
thank you , so it s a buffer size problem . How can i increase it( i don ' t jsp , only servlet). Thank you – user902509 Jul 16 '12 at 14:35

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.