Questions tagged [nms]

Apache.NMS provides a rich .NET messaging API similar to JMS. The NMS project provides a client for Apache ActiveMQ the most popular and powerful open source message broker along with several others

Apache.NMS is a .NET API that provides a JMS like API for .NET messaging clients. The Apache.NMS project has several implementations of the NMS API available including one for ActiveMQ2 that provides many of the same advanced features as ActiveMQ's Java client library including connection failover support, SSL connectivity, Async sends, flow control and Message compression. Other NMS client libraries include Stomp, MSMQ, Tibco EMS and WCF.

125 questions
1
vote
1 answer

how to access the activemq statistics plugin in .net

I am trying to access the activemq statistics information http://activemq.apache.org/statisticsplugin.html in c# This is what i have so far. I am not able to get a reply from the consumer. I can the count increase in monitor website for the queue. …
glant
  • 479
  • 6
  • 19
1
vote
1 answer

ActiveMQ 5.7.0 Selector not working in C#

I have a very simple ActiveMQ message consumer that's created in C# as follows: using(IMessageConsumer consumer = session.CreateConsumer(destination,"NMSCorrelationID=''")){ /* This Receive(..) operation does not…
naveen
  • 219
  • 4
  • 12
1
vote
1 answer

Spring.net NMS vs Apache NMS

I was looking using ActiveMQ and I found that spring.net has it's own NMS library and so does the Apache community http://www.springframework.net/doc-latest/reference/html/nms-quickstart.html http://activemq.apache.org/nms/nms-api.html Does anyone…
JustinT
  • 161
  • 1
  • 5
0
votes
1 answer

Should I force AMQ NMS Reconnects after several hours?

We're using AMQ 5.4.2 Broker and NMS.ActiveMQ 1.5.0 with C#. Works very well, just like the Java stack I am mostly used to. However, after about 12 hours, there is a consistent delay between when a message is sent to the queue, and when a perfectly…
Jerico Sandhorn
  • 1,880
  • 1
  • 18
  • 24
0
votes
1 answer

activeMQ nms in .NET - how to check if temp queue has been deleted?

I've integrated ActiveMQ NMS with my asp mvc website and it's working great for the most part, but I've run into a brick wall with my recent issue and can't figure out for the life of me whether it's something I'm missing, lack of API support, or…
ijjo
  • 525
  • 9
  • 22
0
votes
1 answer

Why do ActiveMQ Consumers Recover to Pull Mode instead of Prefetch

I recently upgraded to NMS ActiveMQ 1.5.2 and when I restart the broker, the connection and the consumers get restored, but they get restored to the "pull" mode, which means the broker will not send them messages automatically. This isn't how the…
Jerico Sandhorn
  • 1,880
  • 1
  • 18
  • 24
0
votes
1 answer

ActiveMQ: Set priority for message is not working

I have problems setting message priorities via nms. The messages are sent to the queue everything is ok but the priority is ignored. I use the following code: message.NMSPriority = MsgPriority.High; Regardless what value I set for message priority,…
Chris
  • 4,325
  • 11
  • 51
  • 70
0
votes
0 answers

Time taken by first iteration of the pytorch non max suppression code is significantly higher compared to next iterations

I am trying to run inference using yolo model for pose estimation in a batched manner (i.e I concat the images in the batch dimension before passing it through the model). I am running into an issue where the non-max-suppression part is taking very…
0
votes
1 answer

Active MQ Artemis and C#/.NET Core

I am using Artemis with .NET Core and NMS in 2 different projects. One as a consumer and one as a listener and I am following the code example provided in the docs. When I follow the documentation, I can get both async and sync versions to…
Joel Dinis
  • 25
  • 4
0
votes
3 answers

Sending a Response to an ActiveMQ Temporary Queue using only the ReplyTo Name

Lately, I've been trying to get the Reply-To pattern to work in Apache NMS /ActiveMQ and have been having problems sending messages to temporary queues using only the name of the temporary queue. The project is dispatcher service which retrieves…
SCote
  • 664
  • 1
  • 8
  • 19
0
votes
0 answers

How to enable multiple consumers for Apache.NMS.AMQP clients?

Would like to know how to enable multiple consumers for Apache.NMS.AMQP client. Have tried with multiple sessions for same queue with different consumer - but the listener is only getting called for one consumer per queue. Below is the sample code.…
Subasish
  • 92
  • 11
0
votes
1 answer

How do I get NMS classes for 1.18.1?

Simple thing: I want to use NMS classes for my Spigot 1.18.1 Plugin. I downloaded Buildtools, there are all spigot classes inside (ItemStack, World, Player, ...) But I want to use NBTTagCompound or .asNMSCopy(); Methods but the classes are not…
0
votes
1 answer

Could not create the IConnectionFactory implementation

I have a windows service. I using Topshelf. When started it is run a cs.Start() method. static void Main(string[] args) { var exitCode = HostFactory.Run(x => { var assembly = new…
Jheferson
  • 61
  • 6
0
votes
1 answer

android benchmark doesnt show run in log file

I have a few tensorflow models in a tflite format. When running the commands: adb shell am start -S \ -n org.tensorflow.lite.benchmark/.BenchmarkModelActivity \ --es args '"--graph=/data/local/tmp/your_model.tflite \ …
gozi
  • 63
  • 6
0
votes
1 answer

Consumer with message selector not working

I have a simple consumer: try { factory = new NMSConnectionFactory(Settings.Endpoint); connection = factory.CreateConnection(Settings.UserName, Settings.Password); …
Jheferson
  • 61
  • 6
1 2 3
8 9