activemq-artemis

Wildfly 15 external Artemis ActiveMQ destination not found

馋奶兔 提交于 2019-12-25 00:17:29
问题 I have a wildfly 15 with an external ActiveMQ and use a resource adapter. But i cannot get a connection to a queue to write on. But I can listen at the queue. here is my configuration: ironjacamar.xml: <admin-objects> <admin-object class-name="org.apache.activemq.command.ActiveMQQueue" jndi-name="java:jboss/activemq/queue/HELLOWORLDMDBQueue1234"> <config-property name="PhysicalName"> activemq/queue/HELLOWORLDMDBQueue </config-property> </admin-object> </admin-objects> ra.xml: <adminobject>

Wildfly Artemis ActiveMQ lookup fail

▼魔方 西西 提交于 2019-12-25 00:15:58
问题 My lookup for a que fail. The que is registered in the wildfly and configured with ironjacamar.xml wildfly output on start: Bound JCA AdminObject [java:jboss/activemq/queue/HELLOWORLDMDBQueue] ironjacamar config: <admin-object class-name="org.apache.activemq.command.ActiveMQQueue" jndi-name="java:jboss/activemq/queue/HELLOWORLDMDBQueue"> <config-property name="PhysicalName"> activemq/queue/HELLOWORLDMDBQueue </config-property> </admin-object> ra.xml: <adminobject> <adminobject-interface>javax

JMS 2.0 - How to receive messages from topic with shared consumers?

偶尔善良 提交于 2019-12-24 21:05:12
问题 I am using ActiveMQ Artemis and JMS 2.0 for reading topic messages with shared consumers. I have two questions: Is there any way to use configuration with xml format. When I set the message listener on the consumer is it mandatory to use a while loop? If I don't use while (true) loop the program will terminate when topic has no messages. SharedConsumer.java public class SharedConsumer { @Resource(lookup = "java:comp/DefaultJMSConnectionFactory") ConnectionFactory connectionFactory; public

Understanding Connectors ActiveMQ Artemis

拥有回忆 提交于 2019-12-24 12:14:30
问题 I am new in ActiveMQ Artemis I have read doc and found connectors are used by a client to define how it connects to a server. I have a broker.xml file which have following peace of code <connectors> <connector name="netty-connector">tcp://0.0.0.0:61616</connector> <!-- connector to the server1 --> <connector name="server1-connector">tcp://0.0.0.0:9616</connector> </connectors> <!-- Acceptors --> <acceptors> <acceptor name="netty-acceptor">tcp://0.0.0.0:61616</acceptor> </acceptors> so here

Wildfly 11 connection to remote Artemis ActiveMQ server configuration

杀马特。学长 韩版系。学妹 提交于 2019-12-24 09:33:44
问题 It appears that the netty-connector to the remote client is not happy! For now, I have active my running on my local machine with the standard 616161 port. I followed the directions at https://docs.jboss.org/author/display/WFLY/Connect+a+pooled-connection-factory+to+a+Remote+Artemis+Server Here is the error: 12:18:50,707 INFO [org.apache.activemq.artemis.core.server] (ServerService Thread Pool -- 68) AMQ221007: Server is now live 12:18:50,707 INFO [org.apache.activemq.artemis.core.server]

How update WildFly 10.1.0Final Apache Artemis 1.1.0 to Apache Artemis 1.3

两盒软妹~` 提交于 2019-12-19 10:45:10
问题 I have installed WildFly 10.1.0.Final I I created a Stomp over Websocket client to in Javascript to connect directly to a topic in Artemis. I connect an subscrite two clients but when I close or unscribe one of the two clients, the others spot recive messages. I found a mail-list that have exactly discribing the same problem. http://activemq.2283324.n4.nabble.com/STOMP-server-quits-sending-to-all-subscribers-when-one-client-disconnects-td4713980.html One user called "johndament" mention that

How to monitor Apache Artemis

倾然丶 夕夏残阳落幕 提交于 2019-12-18 12:07:17
问题 I'm doing some testing with RabbitMQ, ActiveMQ and Apache Artemis in a Windows .NET environment. RabbitMQ and ActiveMQ ship with a web interface where you can see information about your broker, queues, messages etc. but Artemis does not. I really want to be able to monitor my Artemis broker in a web interface or at the very least with some cmd/PowerShell commands. I've read on this page about some third-party tools that can be used to monitor an ActiveMQ instance and I assumed that it also

ActiveMQ Artemis Error - AMQ224088: Timeout (10 seconds) while handshaking has occurred

耗尽温柔 提交于 2019-12-13 21:02:51
问题 In ActiveMQ Artemis, I occasionally receive the connection error below. I can't see any obvious impact to the brokers or message queues. Anyone able to advise exactly what it means or what impact it could be having? Current action performed is to either restart the brokers or check to see they're still connected to the cluster. Is either of this action necessary? Current ActiveMQ Artemis version deployed is v2.7.0. //error log line received at least once a month 2019-05-02 07:28:14,238 ERROR

Is there a Java 1.7 compatible Artemis JMS client?

笑着哭i 提交于 2019-12-11 19:28:38
问题 Is it possible to get (or build) an equivalent of artemis-jms-client-all-2.x.0.jar compatible with Java 1.7? I need it because Weblogic SOA 10.x doesn't support Java 1.8, and I would like to connect it to ActiveMQ Artemis. 回答1: The ActiveMQ Artemis JMS client (and many of its dependencies) use language features from Java 1.8 so there is no 2.x release which is compatible with Java 1.7. It is theoretically possible to use a 1.4 or earlier release with a current 2.x broker, but that was before

How to send message to queue in ActiveMQ Artemis via GUI

陌路散爱 提交于 2019-12-11 17:38:13
问题 I have Apache ActiveMQ Artemis installed and want to populate a queue via the GUI with a message. I navigate to queues --> Select queue --> operations There is a function sendMessage(java.util.Map,int,java.lang.String,boolean,java.lang.String,java.lang.String) The screen looks like : For the Type, I add in 1 and for the Body I add in "Test" When I click execute, the queue does not get populated. Is there something else I need to do to populate the queue via Artemis GUI ? 回答1: I think it's