I was getting a similar error when creating JMS resource resources and connection queues / themes. But below the team worked for me on the asadmin command>
asadmin> create-jms-resource --host localhost --port 4848 --restype javax.jms.TopicConnectionFactory --property Name=MyID jms/DurableTopicConnectionFactory
The create-jms-resource command completed successfully.
asadmin> create-jms-resource --host localhost --port 4848 --restype javax.jms.QueueConnectionFactory --property Name=MyQCF jms/QCF1
The create-jms-resource command completed successfully.
asadmin> create-jms-resource --host localhost --port 4848 --restype javax.jms.Topic --property Name=PhysicalTopic jms/MyTopic
Deprecated syntax, use:
asadmin --host localhost --port 4848 create-jms-resource [options] ..
Created jms / MyTopic managed entity. The create-jms-resource command completed successfully.
asadmin> create-jms-resource --host localhost --port 4848 --restype javax.jms.Queue --property Name=PhysicalQueue jms/MyQueue
Created jms / MyQueue managed entity.
Note. You can safely ignore an outdated message. Just update the resources of the admin page and click "Create", you will see new resources.
hope this helps.
ramnyc
source share