You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@activemq.apache.org by "Jean-Yves Mengant (JIRA)" <ji...@apache.org> on 2010/11/09 19:25:00 UTC

[jira] Created: (AMQ-3026) Statistics plugin sample hanging when switching to http transport protocol

Statistics plugin sample hanging when switching to http transport protocol
--------------------------------------------------------------------------

                 Key: AMQ-3026
                 URL: https://issues.apache.org/activemq/browse/AMQ-3026
             Project: ActiveMQ
          Issue Type: Bug
          Components: Transport
    Affects Versions: 5.4.1
            Reporter: Jean-Yves Mengant


When running using HTTP transport connector the provided sample ActiveMQ stat sample hangs on the :
MapMessage reply = (MapMessage) consumer.receive(); 

to reproduce : 
just use the activeMQ provided sample statistics plugin sample copied below :

      ActiveMQSession session = broker.getSession() ;
      Queue replyTo = session.createTemporaryQueue();
      MessageConsumer consumer = session.createConsumer(replyTo);

      Queue testQueue = session.createQueue("TEST.FOO");
      MessageProducer producer = session.createProducer(null);

      String queueName = "ActiveMQ.Statistics.Destination." + testQueue.getQueueName() ;
      Queue query = session.createQueue(queueName);

      Message msg = session.createMessage();

      producer.send(testQueue, msg) ;
      msg.setJMSReplyTo(replyTo);
      producer.send(query, msg);
      MapMessage reply = (MapMessage) consumer.receive();
      assertNotNull(reply);
      assertTrue(reply.getMapNames().hasMoreElements());

      for (Enumeration e = reply.getMapNames();e.hasMoreElements();) {
          String name = e.nextElement().toString();
          System.err.println(name + "=" + reply.getObject(name));
      }

1) Check that it works  correclty using an ActiveMQ TCPIP based session.  ===> OK
2) just replace the ActiveMQ TCPIP based session by an HTTP transport session.  ===> KO

The sample will remain unresponsive on the : MapMessage reply = (MapMessage) consumer.receive(); instruction then.




-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.