Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 89504 invoked from network); 18 Feb 2007 20:44:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Feb 2007 20:44:44 -0000 Received: (qmail 94914 invoked by uid 500); 18 Feb 2007 20:44:52 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 94891 invoked by uid 500); 18 Feb 2007 20:44:52 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 94882 invoked by uid 99); 18 Feb 2007 20:44:52 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Feb 2007 12:44:52 -0800 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Feb 2007 12:44:43 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id A57191A981A; Sun, 18 Feb 2007 12:44:23 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r508988 - in /activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands: DestinationInfo.cpp JournalTransaction.cpp MessageAck.cpp TransactionInfo.cpp Date: Sun, 18 Feb 2007 20:44:23 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070218204423.A57191A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Sun Feb 18 12:44:22 2007 New Revision: 508988 URL: http://svn.apache.org/viewvc?view=rev&rev=508988 Log: http://issues.apache.org/activemq/browse/AMQCPP-30 Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/DestinationInfo.cpp activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/JournalTransaction.cpp activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/MessageAck.cpp activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/TransactionInfo.cpp Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/DestinationInfo.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/DestinationInfo.cpp?view=diff&rev=508988&r1=508987&r2=508988 ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/DestinationInfo.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/DestinationInfo.cpp Sun Feb 18 12:44:22 2007 @@ -124,7 +124,7 @@ } else { stream << " Object is NULL" << std::endl; } - stream << " Value of OperationType = " << this->getOperationType() << std::endl; + stream << " Value of OperationType = " << (int)this->getOperationType() << std::endl; stream << " Value of Timeout = " << this->getTimeout() << std::endl; for( size_t ibrokerPath = 0; ibrokerPath < this->getBrokerPath().size(); ++ibrokerPath ) { stream << " Value of BrokerPath[" << ibrokerPath << "] is Below:" << std::endl; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/JournalTransaction.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/JournalTransaction.cpp?view=diff&rev=508988&r1=508987&r2=508988 ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/JournalTransaction.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/JournalTransaction.cpp Sun Feb 18 12:44:22 2007 @@ -99,7 +99,7 @@ } else { stream << " Object is NULL" << std::endl; } - stream << " Value of Type = " << this->getType() << std::endl; + stream << " Value of Type = " << (int)this->getType() << std::endl; stream << " Value of WasPrepared = " << this->getWasPrepared() << std::endl; stream << BaseDataStructure::toString(); stream << "End Class = JournalTransaction" << std::endl; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/MessageAck.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/MessageAck.cpp?view=diff&rev=508988&r1=508987&r2=508988 ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/MessageAck.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/MessageAck.cpp Sun Feb 18 12:44:22 2007 @@ -139,7 +139,7 @@ } else { stream << " Object is NULL" << std::endl; } - stream << " Value of AckType = " << this->getAckType() << std::endl; + stream << " Value of AckType = " << (int)this->getAckType() << std::endl; stream << " Value of FirstMessageId is Below:" << std::endl; if( this->getFirstMessageId() != NULL ) { stream << this->getFirstMessageId()->toString() << std::endl; Modified: activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/TransactionInfo.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/TransactionInfo.cpp?view=diff&rev=508988&r1=508987&r2=508988 ============================================================================== --- activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/TransactionInfo.cpp (original) +++ activemq/activemq-cpp/trunk/activemq-cpp/src/main/activemq/connector/openwire/commands/TransactionInfo.cpp Sun Feb 18 12:44:22 2007 @@ -110,7 +110,7 @@ } else { stream << " Object is NULL" << std::endl; } - stream << " Value of Type = " << this->getType() << std::endl; + stream << " Value of Type = " << (int)this->getType() << std::endl; stream << BaseCommand::toString(); stream << "End Class = TransactionInfo" << std::endl;