1

I am trying pushing messgae through jmeter JMS publisher in solace queue. But I am getting below error. Error: javax.jms.JMSException: Error creating connection - internal error (403: Client Username Is Shutdown)

Also, please confirm on "Destination" field. Currently I am using "Topic JNDI" Value in Destination.

1 Answers1

1

As per Solace documentation:

After the client is bound to a client username account in the specified Message VPN, the message broker checks whether that client username account is enabled or not. If the client username account is not enabled, the client is disconnected. (The response “403 Client Username Is Shutdown” is sent before disconnecting.)

So I would recommend double-checking your username and the way you're setting it, it can be one of the following approaches (from highest priority to lowest):

  • via the Java System Property
  • via JNDI property
  • embedded in the URL

Check out Building a JMS Testing Plan - Apache JMeter to learn more on message brokers/queues/topics load testing concept.

Dmitri T
  • 159,985
  • 5
  • 83
  • 133