Hi,
Can anyone help with the following error:
java.lang.AbstractMethodError: org.apache.activemq.openwire.v2.BrokerInfoMarshaller.tightUnmarshal(Lorg/apache/activemq/openwire/OpenWireFormat;Ljava/lang/Object;Ljava/io/DataInputStream;Lorg/apache/activemq/openwire/BooleanStream;)V
at org.apache.activemq.openwire.OpenWireFormat.doUnmarshal(OpenWireFormat.java:350)
at org.apache.activemq.openwire.OpenWireFormat.unmarshal(OpenWireFormat.java:276)
at org.apache.activemq.transport.tcp.TcpTransport.run(TcpTransport.java:142)
at java.lang.Thread.run(Thread.java:595)
Caused by: java.lang.NoSuchMethodError: org.apache.activemq.command.ConnectionInfo.isClientMaster()Z
at org.apache.activemq.openwire.v2.ConnectionInfoMarshaller.tightMarshal1(ConnectionInfoMarshaller.java:107)
at org.apache.activemq.openwire.OpenWireFormat.marshal(OpenWireFormat.java:234)
at org.apache.activemq.transport.tcp.TcpTransport.oneway(TcpTransport.java:124)
...
(more stack trace available if needed)
I am using the following maven libraries:
<dependency>
<groupId>org.apache.activemq</groupId>
<artifactId>activemq-core</artifactId>
<version>4.1.1</version>
</dependency>
<dependency>
<groupId>javax.jms</groupId>
<artifactId>jms</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.logicblaze.lingo</groupId>
<artifactId>lingo</artifactId>
<version>1.3</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
<version>2.0</version>
</dependency>
Thanks,
Jason