Return-Path: Delivered-To: apmail-activemq-commits-archive@www.apache.org Received: (qmail 47225 invoked from network); 1 Feb 2008 20:20:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Feb 2008 20:20:36 -0000 Received: (qmail 77781 invoked by uid 500); 1 Feb 2008 20:20:28 -0000 Delivered-To: apmail-activemq-commits-archive@activemq.apache.org Received: (qmail 77752 invoked by uid 500); 1 Feb 2008 20:20:28 -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 77742 invoked by uid 99); 1 Feb 2008 20:20:28 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Feb 2008 12:20:28 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED 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; Fri, 01 Feb 2008 20:20:20 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 6ED3E1A983E; Fri, 1 Feb 2008 12:20:12 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r617630 - in /activemq/activemq-cpp/trunk/src/main/activemq: connector/openwire/marshal/ connector/stomp/ core/ transport/ transport/filters/ Date: Fri, 01 Feb 2008 20:20:05 -0000 To: commits@activemq.apache.org From: tabish@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080201202012.6ED3E1A983E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: tabish Date: Fri Feb 1 12:20:00 2008 New Revision: 617630 URL: http://svn.apache.org/viewvc?rev=617630&view=rev Log: http://issues.apache.org/activemq/browse/AMQCPP-103 Modified: activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/marshal/PrimitiveMapMarshaller.cpp activemq/activemq-cpp/trunk/src/main/activemq/connector/stomp/StompSessionManager.cpp activemq/activemq-cpp/trunk/src/main/activemq/connector/stomp/StompSessionManager.h activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQSession.cpp activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQTransaction.cpp activemq/activemq-cpp/trunk/src/main/activemq/transport/IOTransportFactory.cpp activemq/activemq-cpp/trunk/src/main/activemq/transport/MockTransport.cpp activemq/activemq-cpp/trunk/src/main/activemq/transport/MockTransportFactory.cpp activemq/activemq-cpp/trunk/src/main/activemq/transport/filters/ResponseCorrelator.cpp Modified: activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/marshal/PrimitiveMapMarshaller.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/marshal/PrimitiveMapMarshaller.cpp?rev=617630&r1=617629&r2=617630&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/marshal/PrimitiveMapMarshaller.cpp (original) +++ activemq/activemq-cpp/trunk/src/main/activemq/connector/openwire/marshal/PrimitiveMapMarshaller.cpp Fri Feb 1 12:20:00 2008 @@ -36,7 +36,7 @@ using namespace decaf::lang; /////////////////////////////////////////////////////////////////////////////// -void PrimitiveMapMarshaller::marshal( const util::PrimitiveMap* map, +void PrimitiveMapMarshaller::marshal( const activemq::util::PrimitiveMap* map, std::vector& dest ) throw ( cms::CMSException ) { @@ -98,7 +98,7 @@ /////////////////////////////////////////////////////////////////////////////// void PrimitiveMapMarshaller::unmarshal( - util::PrimitiveMap* map, + activemq::util::PrimitiveMap* map, const std::vector& src ) throw ( cms::CMSException ) { try { @@ -129,7 +129,7 @@ /////////////////////////////////////////////////////////////////////////////// void PrimitiveMapMarshaller::marshalPrimitive( io::DataOutputStream& dataOut, - util::PrimitiveMap::ValueNode& value ) + activemq::util::PrimitiveMap::ValueNode& value ) throw ( decaf::io::IOException ) { try { @@ -211,7 +211,7 @@ /////////////////////////////////////////////////////////////////////////////// void PrimitiveMapMarshaller::unmarshalPrimitive( io::DataInputStream& dataIn, const std::string& key, - util::PrimitiveMap& map ) + activemq::util::PrimitiveMap& map ) throw ( decaf::io::IOException ) { try { Modified: activemq/activemq-cpp/trunk/src/main/activemq/connector/stomp/StompSessionManager.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/connector/stomp/StompSessionManager.cpp?rev=617630&r1=617629&r2=617630&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/activemq/connector/stomp/StompSessionManager.cpp (original) +++ activemq/activemq-cpp/trunk/src/main/activemq/connector/stomp/StompSessionManager.cpp Fri Feb 1 12:20:00 2008 @@ -71,7 +71,7 @@ //////////////////////////////////////////////////////////////////////////////// connector::SessionInfo* StompSessionManager::createSession( cms::Session::AcknowledgeMode ackMode ) - throw ( exceptions::ActiveMQException ) { + throw ( activemq::exceptions::ActiveMQException ) { try{ @@ -92,7 +92,7 @@ //////////////////////////////////////////////////////////////////////////////// void StompSessionManager::removeSession( connector::SessionInfo* session AMQCPP_UNUSED) - throw ( exceptions::ActiveMQException ) { + throw ( activemq::exceptions::ActiveMQException ) { // NO-op } Modified: activemq/activemq-cpp/trunk/src/main/activemq/connector/stomp/StompSessionManager.h URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/connector/stomp/StompSessionManager.h?rev=617630&r1=617629&r2=617630&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/activemq/connector/stomp/StompSessionManager.h (original) +++ activemq/activemq-cpp/trunk/src/main/activemq/connector/stomp/StompSessionManager.h Fri Feb 1 12:20:00 2008 @@ -94,7 +94,7 @@ */ virtual connector::SessionInfo* createSession( cms::Session::AcknowledgeMode ackMode ) - throw ( exceptions::ActiveMQException ); + throw ( activemq::exceptions::ActiveMQException ); /** * removes the specified Session from the Manager, all data that @@ -103,7 +103,7 @@ * @param session the session info for the session to remove. */ virtual void removeSession( connector::SessionInfo* session ) - throw ( exceptions::ActiveMQException ); + throw ( activemq::exceptions::ActiveMQException ); /** * Creates a new consumer to the specified session, will subscribe Modified: activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQSession.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQSession.cpp?rev=617630&r1=617629&r2=617630&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQSession.cpp (original) +++ activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQSession.cpp Fri Feb 1 12:20:00 2008 @@ -78,7 +78,7 @@ } //////////////////////////////////////////////////////////////////////////////// -void ActiveMQSession::fire( exceptions::ActiveMQException& ex ) { +void ActiveMQSession::fire( activemq::exceptions::ActiveMQException& ex ) { if( connection != NULL ) { connection->fire( ex ); } Modified: activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQTransaction.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQTransaction.cpp?rev=617630&r1=617629&r2=617630&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQTransaction.cpp (original) +++ activemq/activemq-cpp/trunk/src/main/activemq/core/ActiveMQTransaction.cpp Fri Feb 1 12:20:00 2008 @@ -183,7 +183,8 @@ } //////////////////////////////////////////////////////////////////////////////// -void ActiveMQTransaction::commit() throw ( exceptions::ActiveMQException ) { +void ActiveMQTransaction::commit() + throw ( activemq::exceptions::ActiveMQException ) { try{ @@ -217,7 +218,8 @@ } //////////////////////////////////////////////////////////////////////////////// -void ActiveMQTransaction::rollback() throw ( exceptions::ActiveMQException ) { +void ActiveMQTransaction::rollback() + throw ( activemq::exceptions::ActiveMQException ) { try{ @@ -271,7 +273,7 @@ //////////////////////////////////////////////////////////////////////////////// void ActiveMQTransaction::redeliverMessages( ActiveMQConsumer* consumer, MessageList& messages ) - throw ( exceptions::ActiveMQException ) { + throw ( activemq::exceptions::ActiveMQException ) { try { Modified: activemq/activemq-cpp/trunk/src/main/activemq/transport/IOTransportFactory.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/transport/IOTransportFactory.cpp?rev=617630&r1=617629&r2=617630&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/activemq/transport/IOTransportFactory.cpp (original) +++ activemq/activemq-cpp/trunk/src/main/activemq/transport/IOTransportFactory.cpp Fri Feb 1 12:20:00 2008 @@ -30,7 +30,8 @@ Transport* IOTransportFactory::createTransport( const decaf::util::Properties& properties AMQCPP_UNUSED, Transport* next AMQCPP_UNUSED, - bool own AMQCPP_UNUSED ) throw ( exceptions::ActiveMQException ) { + bool own AMQCPP_UNUSED ) + throw ( activemq::exceptions::ActiveMQException ) { try{ // IO is the Base Tranport, it can have no next. Modified: activemq/activemq-cpp/trunk/src/main/activemq/transport/MockTransport.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/transport/MockTransport.cpp?rev=617630&r1=617629&r2=617630&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/activemq/transport/MockTransport.cpp (original) +++ activemq/activemq-cpp/trunk/src/main/activemq/transport/MockTransport.cpp Fri Feb 1 12:20:00 2008 @@ -57,7 +57,8 @@ } //////////////////////////////////////////////////////////////////////////////// -unsigned int MockTransport::getNextCommandId() throw ( exceptions::ActiveMQException ) { +unsigned int MockTransport::getNextCommandId() + throw ( activemq::exceptions::ActiveMQException ) { try{ Modified: activemq/activemq-cpp/trunk/src/main/activemq/transport/MockTransportFactory.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/transport/MockTransportFactory.cpp?rev=617630&r1=617629&r2=617630&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/activemq/transport/MockTransportFactory.cpp (original) +++ activemq/activemq-cpp/trunk/src/main/activemq/transport/MockTransportFactory.cpp Fri Feb 1 12:20:00 2008 @@ -33,7 +33,7 @@ Transport* MockTransportFactory::createTransport( const decaf::util::Properties& properties, Transport* next, - bool own ) throw ( exceptions::ActiveMQException ) { + bool own ) throw ( activemq::exceptions::ActiveMQException ) { try{ Modified: activemq/activemq-cpp/trunk/src/main/activemq/transport/filters/ResponseCorrelator.cpp URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/src/main/activemq/transport/filters/ResponseCorrelator.cpp?rev=617630&r1=617629&r2=617630&view=diff ============================================================================== --- activemq/activemq-cpp/trunk/src/main/activemq/transport/filters/ResponseCorrelator.cpp (original) +++ activemq/activemq-cpp/trunk/src/main/activemq/transport/filters/ResponseCorrelator.cpp Fri Feb 1 12:20:00 2008 @@ -26,7 +26,7 @@ //////////////////////////////////////////////////////////////////////////////// unsigned int ResponseCorrelator::getNextCommandId() - throw ( exceptions::ActiveMQException ){ + throw ( activemq::exceptions::ActiveMQException ){ try{