Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 57830 invoked from network); 5 Sep 2006 14:46:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Sep 2006 14:46:55 -0000 Received: (qmail 34205 invoked by uid 500); 5 Sep 2006 14:46:43 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 33375 invoked by uid 500); 5 Sep 2006 14:46:41 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 33364 invoked by uid 99); 5 Sep 2006 14:46:41 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Sep 2006 07:46:41 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of bruno.vilardo@gmail.com designates 64.233.166.177 as permitted sender) Received: from [64.233.166.177] (HELO py-out-1112.google.com) (64.233.166.177) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 05 Sep 2006 07:46:40 -0700 Received: by py-out-1112.google.com with SMTP id f28so2696059pyf for ; Tue, 05 Sep 2006 07:46:20 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=G43AbXhJvTBSdF2pc8tQqMlpH3jy3HTd9azKp7g9kSI8wm8eAP/bD2TSzK9Fr75w47zvJzv1scLFZPx17aN3lUf1/lnujVVtnbc9yqmkEGezoOODL384wPPlAEINrxmnrYwimwhL7il2KQvPcU6uRmlyyfP/HMOwoXeInOvOq8U= Received: by 10.35.123.10 with SMTP id a10mr12594389pyn; Tue, 05 Sep 2006 07:46:20 -0700 (PDT) Received: by 10.35.51.8 with HTTP; Tue, 5 Sep 2006 07:46:20 -0700 (PDT) Message-ID: Date: Tue, 5 Sep 2006 11:46:20 -0300 From: "Bruno Vilardo" To: "Tomcat Users List" Subject: Re: How to disable "HTTP/100 Continue" on Tomcat In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_86222_6728654.1157467580088" References: X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_86222_6728654.1157467580088 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Hello Bill, Thanks a lot for the info. I could not find this Paramenter. We are trying to configure in TomCat the Http 1.0 instead of http1.1 which sends the "100/Continue". To do this we have edited the server.xml and commented the http1.1 and uncommented the http1.0 option. But we are still seeing the "100/Continue" message even known that the Http1.0 is configured. Best Regards, Bruno On 9/4/06, Bill Barker wrote: > > > "Bruno Vilardo" wrote in message > news:c7eb567e0609041436k5522ba17g6c6f051b893ce843@mail.gmail.com... > > THe correct is "The "100 Continue" is telling the client that it is ok > to > > start sending the request body". But the "request body" does not reach. > > We have log files that keep the response and the log has only the "100 > > Continue" response and it should have the "request body" on the log. > > > > What is the file in TOMCAT to simply disable this "100 Continue" Message > ? > > > > Probably Http11Processor.java. Search for "expectation". However, with a > working client, this will slow down your app considerably as the client > will > likely wait several seconds before sending the request body. But, it's > your > Tomcat ;-). > > > Thanks a lot, > > Best Regards, > > > > Bruno > > > > Which is correct. The "100 Continue" is telling the client that it is > ok > > to > > start sending the request body. Tomcat sends this before control has > even > > reached your servlet, and only if the client asked it to. > > > > > > > > On 9/4/06, Bill Barker wrote: > >> > >> > >> "Bruno Vilardo" wrote in message > >> news:c7eb567e0609041337n561fc657k34b6cd0fc33f8f3a@mail.gmail.com... > >> > Hello Bill , > >> > > >> > This is the sequence. > >> > > >> > The sequence of events to delivery a QDoc using Sonic is: > >> > - Outbound generates the QDoc and then send to Sonic; > >> > - Sonic receive this QDoc and send to Inbound; > >> > - Inbound process the QDoc and creates a Response, sending it to > Sonic; > >> > - Sonic should delivery this response to outbound; But only the > >> > "100Continue" message is send. > >> > > >> > >> Which is correct. The "100 Continue" is telling the client that it is > ok > >> to > >> start sending the request body. Tomcat sends this before control has > >> even > >> reached your servlet, and only if the client asked it to. > >> > >> > HTH. > >> > Thanks a lot, > >> > > >> > Best Regards, > >> > > >> > Bruno > >> > > >> > > >> > > >> > On 9/4/06, Bill Barker wrote: > >> >> > >> >> > >> >> "Bruno Vilardo" wrote in message > >> >> news:c7eb567e0609041227h5d50d97el49bb1d5ad5847ce6@mail.gmail.com... > >> >> > Hello All, > >> >> > > >> >> > I am a new user of TOMCAT sorry for any dumb question;-) > >> >> > > >> >> > TOMCAT version is *"jakarta-tomcat-4.1.31".* > >> >> > ** > >> >> > We current have an application that replicates data. > >> >> > > >> >> > But we are having some issue because our Application is receiving > >> >> > the > >> >> > "HTTP/100 Continue" response before the "Application" response > >> >> > saying > >> >> that > >> >> > everything was processed OK at the other side. > >> >> > > >> >> Which is exactly the order they should come in. > >> >> > >> >> > Is there a way to disable this "HTTP/100 Continue" Message on > >> >> > TOMCAT? > >> >> > > >> >> > >> >> Yes, have your client stop sending > >> >> Expect: 100-Continue > >> >> headers in the request. > >> >> > >> >> > Thanks a lot in Advance. > >> >> > Best Regards, > >> >> > > >> >> > Bruno Vilardo > >> >> > > >> >> > >> >> > >> >> > >> >> > >> >> > --------------------------------------------------------------------- > >> >> To start a new topic, e-mail: users@tomcat.apache.org > >> >> To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org > >> >> For additional commands, e-mail: users-help@tomcat.apache.org > >> >> > >> >> > >> > > >> > > >> > -- > >> > Bruno Vilardo > >> > MFG/Pro Admin & Database Specialist > >> > QAD Brazil > >> > Office - 55 11 5508-2700 > >> > Mobile - 55 11 9999-8869 > >> > bruno.vilardo@gmail.com > >> > > >> > >> > >> > >> > >> --------------------------------------------------------------------- > >> To start a new topic, e-mail: users@tomcat.apache.org > >> To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org > >> For additional commands, e-mail: users-help@tomcat.apache.org > >> > >> > > > > > > -- > > Bruno Vilardo > > MFG/Pro Admin & Database Specialist > > QAD Brazil > > Office - 55 11 5508-2700 > > Mobile - 55 11 9999-8869 > > bruno.vilardo@gmail.com > > > > > > > --------------------------------------------------------------------- > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org > For additional commands, e-mail: users-help@tomcat.apache.org > > -- Bruno Vilardo MFG/Pro Admin & Database Specialist QAD Brazil Office - 55 11 5508-2700 Mobile - 55 11 9999-8869 bruno.vilardo@gmail.com ------=_Part_86222_6728654.1157467580088--