Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 61313 invoked from network); 3 Dec 2004 03:44:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 3 Dec 2004 03:44:16 -0000 Received: (qmail 87935 invoked by uid 500); 3 Dec 2004 03:44:14 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 87904 invoked by uid 500); 3 Dec 2004 03:44:13 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 87890 invoked by uid 99); 3 Dec 2004 03:44:13 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 02 Dec 2004 19:44:13 -0800 Received: (qmail 61288 invoked by uid 1852); 3 Dec 2004 03:44:12 -0000 Date: 3 Dec 2004 03:44:12 -0000 Message-ID: <20041203034412.61287.qmail@minotaur.apache.org> From: samisa@apache.org To: ws-axis-cvs@apache.org Subject: cvs commit: ws-axis/c/samples/client/session/cookie Client.cpp X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N samisa 2004/12/02 19:44:12 Modified: c/samples/client/session/cookie Client.cpp Log: Axis Java's SimpleAxisServer does not handle HTTP/1.1 properly. Hence get a broken pipe. Changed the protocol to HTTP/1.0. If Axis Java is used with Tomcat, then HTTP/1.1 works fine. Revision Changes Path 1.4 +1 -1 ws-axis/c/samples/client/session/cookie/Client.cpp Index: Client.cpp =================================================================== RCS file: /home/cvs/ws-axis/c/samples/client/session/cookie/Client.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- Client.cpp 29 Nov 2004 12:39:30 -0000 1.3 +++ Client.cpp 3 Dec 2004 03:44:12 -0000 1.4 @@ -65,7 +65,7 @@ cout << endl << " Using service at " << endpoint << endl << endl; - Total ws (endpoint, APTHTTP1_1); + Total ws (endpoint, APTHTTP1_0); ws.setTransportTimeout(2);