Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 7260 invoked from network); 29 Nov 2005 09:23:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 29 Nov 2005 09:23:48 -0000 Received: (qmail 77399 invoked by uid 500); 29 Nov 2005 09:23:47 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 77148 invoked by uid 500); 29 Nov 2005 09:23:45 -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 77137 invoked by uid 99); 29 Nov 2005 09:23:45 -0000 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME 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; Tue, 29 Nov 2005 01:23:44 -0800 Received: (qmail 7066 invoked by uid 65534); 29 Nov 2005 09:23:24 -0000 Message-ID: <20051129092324.7065.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r349680 - /webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp Date: Tue, 29 Nov 2005 09:23:24 -0000 To: axis-cvs@ws.apache.org From: dushshantha@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dushshantha Date: Tue Nov 29 01:23:12 2005 New Revision: 349680 URL: http://svn.apache.org/viewcvs?rev=349680&view=rev Log: Make a change to the client file to get the expected output. Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp Modified: webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp?rev=349680&r1=349679&r2=349680&view=diff ============================================================================== --- webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp (original) +++ webservices/axis/trunk/c/tests/auto_build/testcases/client/cpp/ComplexTypeChoice2Client.cpp Tue Nov 29 01:23:12 2005 @@ -70,17 +70,14 @@ result = ws->myOperation(input); if ( result == NULL ) cout << "result object is null" << endl; - else - cout << "result object is not null" << endl; if ( result->field1 == NULL ) cout << "result field is null" << endl; - else - cout << "result field is not null" << endl; - //cout << "Result field1 is = " << *(result->field1) << endl; + else + cout << "Result is = " << *(result->field1) << endl; - /*cout << "Result field2 is = " << result->field2 << endl; - cout << "Result field3 is = " << result->field3 << endl; */ + //cout << "Result field2 is = " << result->field2 << endl; + //cout << "Result field3 is = " << result->field3 << endl; bSuccess = true;