Hi,
I am new to AMQP 1.0. I was tried to write a simple AMQP sender in Java and
I got the following error
java.lang.StackOverflowError
at
org.apache.qpid.amqp_1_0.codec.UnsignedLongWriter$2.convertToByte(UnsignedLongWriter.java:65)
at
org.apache.qpid.amqp_1_0.codec.UnsignedLongWriter$2.convertToByte(UnsignedLongWriter.java:1)
at
org.apache.qpid.amqp_1_0.codec.FixedOneWriter.setValue(FixedOneWriter.java:75)
at
org.apache.qpid.amqp_1_0.codec.UnsignedLongWriter.setValue(UnsignedLongWriter.java:139)
at
org.apache.qpid.amqp_1_0.codec.UnsignedLongWriter.setValue(UnsignedLongWriter.java:1)
at
org.apache.qpid.amqp_1_0.type.codec.AMQPDescribedTypeRegistry.getValueWriter(AMQPDescribedTypeRegistry.java:362)
at
org.apache.qpid.amqp_1_0.codec.AbstractDescribedTypeWriter.createDescriptorWriter(AbstractDescribedTypeWriter.java:1
This error only occurred when I tried to create DeliveryAnnotations object.
If I don't create DeliveryAnnotations object, it works fine.
My code is
Collection<Section> sections = new ArrayList<Section>();
Map map = new HashMap<String, String>();
map.put("da_key", "da_val");
DeliveryAnnotations da = new DeliveryAnnotations(map);
sections.add(da);
Data data = new Data(new Binary(("hello world").getBytes()));
sections.add(data);
Message myMessage = new Message(sections);
mySender.send(myMessage);
The second thing that I wanted to know whether qpid-amqp-1-0-client-jms-0.22
does support to set certificates for TSL connection?
--
View this message in context:
http://qpid.2158936.n2.nabble.com/StackOverflowError-when-building-AMQP-message-tp7594137.html
Sent from the Apache Qpid users mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]