public void testForeignMessageCorrelationID() throws Exception
{
System.setProperty(HornetQJMSConstants.JMS_HORNETQ_ENABLE_BYTE_ARRAY_JMS_CORRELATION_ID_PROPERTY_NAME, "true");
SimpleJMSMessage msg = new SimpleJMSMessage();
msg.setJMSCorrelationID("mycorrelationid");
byte[] bytes = new byte[] { 1, 4, 3, 6, 8};
msg.setJMSCorrelationIDAsBytes(bytes);
queueProd.send(msg);
Message rec = queueCons.receive();
ProxyAssertSupport.assertNotNull(rec);