Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 28244 invoked from network); 28 Jun 2004 11:48:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 28 Jun 2004 11:48:16 -0000 Received: (qmail 66632 invoked by uid 500); 28 Jun 2004 11:47:56 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 66459 invoked by uid 500); 28 Jun 2004 11:47:51 -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 66330 invoked by uid 99); 28 Jun 2004 11:47:50 -0000 X-ASF-Spam-Status: No, hits=0.5 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.27.1) with SMTP; Mon, 28 Jun 2004 04:47:49 -0700 Received: (qmail 27761 invoked by uid 1686); 28 Jun 2004 11:47:46 -0000 Date: 28 Jun 2004 11:47:46 -0000 Message-ID: <20040628114746.27760.qmail@minotaur.apache.org> From: roshan@apache.org To: ws-axis-cvs@apache.org Subject: cvs commit: ws-axis/c/tests/client/threadSafe/WinClient Calculator.cpp X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N roshan 2004/06/28 04:47:46 Modified: c/tests/client/threadSafe/WinClient Calculator.cpp Log: applying patch. This patch was submitted by lahiru. Revision Changes Path 1.2 +7 -5 ws-axis/c/tests/client/threadSafe/WinClient/Calculator.cpp Index: Calculator.cpp =================================================================== RCS file: /home/cvs/ws-axis/c/tests/client/threadSafe/WinClient/Calculator.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- Calculator.cpp 23 Jun 2004 12:20:19 -0000 1.1 +++ Calculator.cpp 28 Jun 2004 11:47:46 -0000 1.2 @@ -73,7 +73,7 @@ cFaultstring = m_pCall->getElementAsString("faultstring", 0); cFaultactor = m_pCall->getElementAsString("faultactor", 0); cFaultdetail = m_pCall->getElementAsString("faultdetail", 0); - throw AxisException(cFaultdetail); + throw AxisGenException(cFaultdetail); } else throw; } @@ -123,7 +123,7 @@ cFaultstring = m_pCall->getElementAsString("faultstring", 0); cFaultactor = m_pCall->getElementAsString("faultactor", 0); cFaultdetail = m_pCall->getElementAsString("faultdetail", 0); - throw AxisException(cFaultdetail); + throw AxisGenException(cFaultdetail); } else throw; } @@ -173,7 +173,7 @@ cFaultstring = m_pCall->getElementAsString("faultstring", 0); cFaultactor = m_pCall->getElementAsString("faultactor", 0); cFaultdetail = m_pCall->getElementAsString("faultdetail", 0); - throw AxisException(cFaultdetail); + throw AxisGenException(cFaultdetail); } else throw; } @@ -223,7 +223,7 @@ cFaultstring = m_pCall->getElementAsString("faultstring", 0); cFaultactor = m_pCall->getElementAsString("faultactor", 0); cFaultdetail = m_pCall->getElementAsString("faultdetail", 0); - throw AxisException(cFaultdetail); + throw AxisGenException(cFaultdetail); } else throw; } @@ -243,7 +243,7 @@ for(;;) { - + int result = cal.add(22, 33); printf("The result is xxxx : %d", result); printf("\n"); @@ -259,10 +259,12 @@ for(;;) { + int result1 = cal1.add(22, 5); printf("The result is xxxx : %d", result1); printf("\n"); Sleep(1000); + }