Re: Trying to send and receive text messages using ActiveMQ with JavaScript (AMQP) and Java (OpenWire/JMS) clients

2018-02-14 Thread Tim Bain
See the Mapping To JMS section of http://activemq.apache.org/amqp.html for details. (The other) Tim On Feb 13, 2018 6:54 PM, "Timothy Bish" wrote: > On 02/13/2018 07:29 PM, Jeroen van Ooststroom wrote: > >> >> I added the wireFormat.allowNonSaslConnections=true to the AMQP >> transport connecto

Re: Trying to send and receive text messages using ActiveMQ with JavaScript (AMQP) and Java (OpenWire/JMS) clients

2018-02-13 Thread Timothy Bish
On 02/13/2018 07:29 PM, Jeroen van Ooststroom wrote: I added the wireFormat.allowNonSaslConnections=true to the AMQP transport connector configuration which resolves the issue of the JavaScript client not being able to connect anymore, but I still get the same kind of BytesMessage at the Java

Re: Trying to send and receive text messages using ActiveMQ with JavaScript (AMQP) and Java (OpenWire/JMS) clients

2018-02-13 Thread Jeroen van Ooststroom
I added the wireFormat.allowNonSaslConnections=true to the AMQP transport connector configuration which resolves the issue of the JavaScript client not being able to connect anymore, but I still get the same kind of BytesMessage at the Java-side as mentioned in the original post with the added

Re: Trying to send and receive text messages using ActiveMQ with JavaScript (AMQP) and Java (OpenWire/JMS) clients

2018-02-13 Thread Timothy Bish
On 02/13/2018 06:22 PM, Jeroen van Ooststroom wrote: Thank you for your response. When I upgrade to ActiveMQ 5.15.3 my simple JavaScript client isn't able to connect to the AMQP connector anymore: error on read: ProtocolError: SASL layer not enabled (buffer:0x41,0x4d,0x51,0x50,0x03,0

Re: Trying to send and receive text messages using ActiveMQ with JavaScript (AMQP) and Java (OpenWire/JMS) clients

2018-02-13 Thread Jeroen van Ooststroom
Thank you for your response. When I upgrade to ActiveMQ 5.15.3 my simple JavaScript client isn't able to connect to the AMQP connector anymore: error on read: ProtocolError: SASL layer not enabled (buffer:0x41,0x4d,0x51,0x50,0x03,0x01,0x00,0x00) I'm not familiar with this. Does this mea

Re: Trying to send and receive text messages using ActiveMQ with JavaScript (AMQP) and Java (OpenWire/JMS) clients

2018-02-13 Thread Timothy Bish
On 02/13/2018 05:29 PM, Jeroen van Ooststroom wrote: I have a simple test JavaScript (Node.js) client that connects to ActiveMQ using AMQP and our Java client that connects to the same ActiveMQ using OpenWire (JMS). When I send a message from the JavaScript client (just a simple “Hello World!”)

Trying to send and receive text messages using ActiveMQ with JavaScript (AMQP) and Java (OpenWire/JMS) clients

2018-02-13 Thread Jeroen van Ooststroom
I have a simple test JavaScript (Node.js) client that connects to ActiveMQ using AMQP and our Java client that connects to the same ActiveMQ using OpenWire (JMS). When I send a message from the JavaScript client (just a simple “Hello World!”) it is received by the Java client as a javax.jms.Byt