You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ta...@apache.org on 2009/03/19 21:11:30 UTC

svn commit: r756162 - /activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java

Author: tabish
Date: Thu Mar 19 20:11:30 2009
New Revision: 756162

URL: http://svn.apache.org/viewvc?rev=756162&view=rev
Log:
Fix some issues found when testing on Windows, Blob Message Marshaller was generated incorrectly.

Modified:
    activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java

Modified: activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java
URL: http://svn.apache.org/viewvc/activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java?rev=756162&r1=756161&r2=756162&view=diff
==============================================================================
--- activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java (original)
+++ activemq/activemq-cpp/trunk/activemq-cpp-openwire-generator/src/main/java/org/apache/activemq/openwire/tool/marshallers/AmqCppMarshallingHeadersGenerator.java Thu Mar 19 20:11:30 2009
@@ -56,6 +56,8 @@
             answer = "MessageMarshaller";
         } else if( answer.equals("ActiveMQStreamMessage") ) {
             answer = "MessageMarshaller";
+        } else if( answer.equals("ActiveMQBlobMessage") ) {
+            answer = "MessageMarshaller";
         }
 
         // We didn't map it, so let the base class handle it.