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
0
votes
1 answer

How to monitor the complete network through Python?

I want to use Python to monitor the complete network, if the route or link goes up/down will get the notification. I found a few packages like lanscan, but I’m not sure that will work fine or not. Basically, I want to use python same as NMS (Network…
Arm
  • 33
  • 7
0
votes
1 answer

ACTIVEMQ + NMS cannot synchronously receive

I'm trying to use activeMQ with an NMS (C#) consumer to get messages, do some processing and then send the contents to a webserivce via HttpClient.PostAsync(), all running within a windows service (via Topshelf). The downstream system I'm…
0
votes
0 answers

C# ActiveMQ NMS Consumer -How to check if connection is broken with producer?

We are using apache-activemq-5.15.12- NMS client c# as consumer. We are using topic. No acknowledgement is required. Connection string is failover:(tcp://localhost:61616)?transport.timeout=10000&maxReconnectAttempts=1. (Trying to reproduce this with…
GTD
  • 9
  • 3
0
votes
0 answers

Unable to use cuda compiled code with pytorch

I would like to calculate the nms using the cuda based code and use it together with torch. Following is my code, this_file = os.path.dirname(os.path.realpath(__file__)) print(this_file) extra_objects = ['src/cuda/nms_kernel.cu.o'] extra_objects =…
Mr. Randy Tom
  • 311
  • 5
  • 13
0
votes
1 answer

Configuring wildcard topic selectors in ActiveMQ

Based on the documentation wildcards support does exist, but I can't seem to find any other info on whether it's just supposed to work or if it's configured on the server or whether the producers or consumers need to configure it. I'm assuming as a…
The Muffin Man
  • 19,585
  • 30
  • 119
  • 191
0
votes
1 answer

AMQ in .Net - Certificate or credentials

Should both Trust store/Key store and Certificate should be used to access AMQ Broker over SSL connection? If yes, how to achieve this? I find very less articles, blogs to do this for NMS. I am newbie.
Sukant
  • 11
  • 3
0
votes
0 answers

ActiveMQ durable consumer retains its subscription after topic was deleted

If topic was deleted while durable consumer was offline it's subscription will remain. Next time after ISession.CreateDurableConsumer is called the consumer will receive the same old subscription (as I understand), and no messages from newly created…
0
votes
1 answer

how to get ClientAcknowledgement to work in NMS?

my understanding is that when specifying AcknowledgementMode.ClientAcknowledge in the producer, i should be able to stop and restart the consumer and the broker will resend all the unacknowledged messages on the topic. i can't get this to work…
4mla1fn
  • 169
  • 1
  • 15
0
votes
0 answers

ActiveMQ recovery after connection loss or any excepiton

So we have this logic for reading messages from queue: /// public void ReceiveFromQueue(IMessageHandler callbackHandler, string queuePrefix, string consumer) where T : class, IMessageBase { if…
freshbm
  • 5,540
  • 5
  • 46
  • 75
0
votes
1 answer

What can I do to prevent the method from being called when creating Unit Test?

I want to emphasize that I am fairly new to creating Unit Test but I've been searching far and wide through google and documentation but I can't find a solution or alternative. So currently I am trying to create Unit test for a microservice my team…
B.Allen
  • 79
  • 1
  • 7
0
votes
1 answer

Apache.NMS.AMQP setting prefetch size

I am using Apache.NMS.AMQP (v1.8.0) to connect to AWS managed ActiveMQ (v5.15.9) broker but am having problems with setting prefetch size for connection/consumer/destination (couldn't set custom value on either of them). While digging through source…
Kruno MONO
  • 81
  • 13
0
votes
1 answer

Get ValueError when calling tf.image.non_max_suppression

I want to use tensorflow tf.image.non_max_suppression function. I tried both snippets below: indices = tf.image.non_max_suppression( boxes=anchors_fit, scores=rpn_cls_prob, max_output_size=self.max_outputs_num, ) indices,scores =…
YoM
  • 5
  • 1
0
votes
1 answer

ActiveMQ NMS SSL: run application from remote machine

There is client C# application deployed on server A. That application communicates with server B where ActiveMQ is running and uses SSL protocol. Certificates imported on server A and server B (both certs into Current User store: client cert into…
Vitaliy
  • 28
  • 5
0
votes
1 answer

ICollectionPtr COM

I have an issue that ive been batteling with for a day or so now and im wondering if anyone might be able to help: Im am trying to use the ActiveMQ-NMS to dequeue messages via COM in a C++ application. I have managed to build the source and override…
Ian Harrigan
  • 836
  • 6
  • 14
0
votes
1 answer

How do I receive messages from an Artemis multicast queue in C#?

I'm up to send and receive messages over ActiveMQ Artemis with C# applications. In Anycast-mode, everything is working. When i tried to send and receive in multicast-mode, i can send, but i don't receive any of the messages from the queue. I tried…
1 2 3
8 9