Gatling and support for jakarta.jms.ConnectionFactory

Hello.
The question is:
Does the Gatling JMS supports the ‘jakarta.jms.ConnectionFactory’ ?

I got something like it:

public JmsConfig() {
        ConnectionFactory connectionFactory =
                (ConnectionFactory) new org.apache.activemq.ActiveMQConnectionFactory(EnvironmentConfig.JMS_URL);

        jmsProtocol = jms
                .connectionFactory((javax.jms.ConnectionFactory) connectionFactory)
                .replyTimeout(20)
                .usePersistentDeliveryMode();
    }

And well, I cannot use it after I changed from javax to jakartas ConnectionFactory.

I can just cast the connectionFactory back to the (javax.jms.ConnectionFactory), but that’s not what I wanted to get.

Can anyone support me, please

Please open a feature request on GitHub and hope for more users (not from your organization) or customers to upvote for it.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.