Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 60647 invoked from network); 5 Apr 2006 13:50:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Apr 2006 13:50:59 -0000 Received: (qmail 94717 invoked by uid 500); 5 Apr 2006 13:50:48 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 94658 invoked by uid 500); 5 Apr 2006 13:50:48 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 94647 invoked by uid 99); 5 Apr 2006 13:50:48 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Apr 2006 06:50:48 -0700 X-ASF-Spam-Status: No, hits=-9.3 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME,SUBJECT_NOVOWEL X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Wed, 05 Apr 2006 06:50:47 -0700 Received: (qmail 59695 invoked by uid 65534); 5 Apr 2006 13:50:03 -0000 Message-ID: <20060405135003.59694.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r391613 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RpcHttpHeaderTest8Client.cpp Date: Wed, 05 Apr 2006 13:50:00 -0000 To: axis-cvs@ws.apache.org From: dicka@apache.org X-Mailer: svnmailer-1.0.7 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dicka Date: Wed Apr 5 06:49:31 2006 New Revision: 391613 URL: http://svn.apache.org/viewcvs?rev=391613&view=rev Log: Removing use of printf from RpcHttpHeaderTest8Client.cpp as this can result in messages becoming out of order, when used with cout. Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RpcHttpHeaderTest8Client.cpp Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RpcHttpHeaderTest8Client.cpp URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RpcHttpHeaderTest8Client.cpp?rev=391613&r1=391612&r2=391613&view=diff ============================================================================== --- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RpcHttpHeaderTest8Client.cpp (original) +++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/RpcHttpHeaderTest8Client.cpp Wed Apr 5 06:49:31 2006 @@ -122,16 +122,16 @@ pszPropertyValue = "(null)"; } - printf( "First transport key = %s\n", pszPropertyKey); - printf( "First transport value = %s\n", pszPropertyValue); + cout << "First transport key = " << pszPropertyKey << endl; + cout << "First transport value = " << pszPropertyValue << endl; const char *key = NULL; int count = 1; while (key = ws.getNextTransportPropertyKey()) { - printf("Next transport key = %s\n", key); - printf("Next transport value = %s\n", - ws.getCurrentTransportPropertyValue()); + cout << "Next transport key = " << key << endl; + cout << "Next transport value = " << + ws.getCurrentTransportPropertyValue() << endl; count++; }