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
0 answers

how can we forward the incoming SNMP trap to other IP address in java

I am new in development, I got the SNMP Trap in the form PDU in java file and I want to forward the incoming trap to other Ip address. can anyone help me to forward SNMP-Trap to other host
0
votes
1 answer

Difference between OrderedMemoryAwareThreadPoolExecutor and MemoryAwareThreadPoolExecutor in netty

While writing netty application I am not sure to which thread pool should i use for my pipeline handler. either I should go with // OrderedMemoryAwareThreadPoolExecutor impl OrderedMemoryAwareThreadPoolExecutor pipelineExecutor = new…
T-Bag
  • 10,916
  • 3
  • 54
  • 118
0
votes
2 answers

CORBA Notification Subscription (ERROR: org.omg.CORBA.MARSHAL: vmcid: 0x0 minor code: 0 completed: No)

I'm trying to subscribe to Notification Service and consumer alarms similar to (org.omg.CORBA.MARSHAL: Server-side Exception: null)!, but getting marshalling errors. Many thanks if someone can help me with what I'm missing or doing wrong. The idls…
user2326017
  • 1
  • 1
  • 2
0
votes
1 answer

Catch a disconnect event from ActiveMQ

Using the 1.6 version of NMS (1.6.3 activemq) I'm setting up a listener to wait for messages. The listener has a thread of it's own (not mine) and my code get out of scope (until the listener's function is being called). If the ActiveMQ server…
Dani
  • 14,639
  • 11
  • 62
  • 110
0
votes
2 answers

Nagios - Custom Report Generation

I want to generate a custom report in "Nagios-3.2.0". I have defined the work-hours in "timeperiods.cfg" as follows: 'workhours' timeperiod definition define timeperiod { timeperiod_name 0800-2000 alias full time monday …
Naveen
  • 439
  • 1
  • 6
  • 15
0
votes
1 answer

Use of DTLS (Datagram Transport Layer Security) with SNMP and Management Systems

Does anyone know if the current crop of SNMP based commercial and open source network management systems (eg, HP OpeenView/NNM, OpenNMS) support the use of SNMP over DTLS?
Doug
  • 1,925
  • 3
  • 13
  • 9
0
votes
1 answer

Consumer service not dequeuing all messages from ActiveMQ queue

I have a windows service that is attempting to consume messages from some activemq queue's. However, it is only getting some of the messages and others are getting stuck in 'messages pending' in the queue. ActiveMQ tells me it has enqueued lets say…
Andrew G
  • 412
  • 1
  • 5
  • 14
0
votes
2 answers

How to send message to activemq payload as in the form of long(datatype)?

I am using .NET 3.5 to send message to active mq and i have a java listener which process these messages from the queue. Header contains userId - long type - string isAdd-bool Listener is expecting payload to be of datatype long. So i should send…
nimi
  • 5,359
  • 16
  • 58
  • 90
0
votes
2 answers

Distributed Transaction support for NServiceBus with ActiveMQ?

We are looking at using ActiveMQ as the message transport with NServiceBus, instead of MSMQ, to enable Java endpoints to directly integrate with .NET endpoints over ActiveMQ. By default NServiceBus endpoints run in a distributed transaction…
bgrommes
  • 65
  • 4
0
votes
1 answer

Can I access ActiveMQ REST management api in c#?

I am coding with c# and activemq, using NMS 1.6.1 and ActiveMQ 5.9. I want to set a unique guid in custom property for each message when I send it, then I can delete a specific message with by its guid(NOT purge a queue, only delete one message in…
hellknight
  • 29
  • 5
0
votes
1 answer

How to collect Snoop Traces

I have to collect the snoop traces of the network packets flowing from a switching element to a UNIX server which are on the same network path. Can you please tell me the procedure to do the same. PS- The switching element can be accessed from…
abc
  • 37
  • 1
  • 10
0
votes
1 answer

Using a web service to drop message onto an ActiveMQ Queue fails on failover

I have a two activeMQ(5.6.0) brokers. They use a shared kaha database so only one can be 'running' at once. I have a (asp.net) webservice that puts a message on a queue, locally if I start and stop the brokers the webservice fails over…
Loofer
  • 6,841
  • 9
  • 61
  • 102
0
votes
1 answer

activemq consumer enumeration

Is it possible to use an activemq consumer (in .NET) like this? foreach (var msg in consumer) { // process message } such that the enumeration loop stops, without consuming CPU, until a message is available? Effectively it would be an infinite loop…
freddy smith
  • 3,347
  • 5
  • 24
  • 28
0
votes
1 answer

Dealing with transactions and event driven consumer with ActiveMQ NMS

Quoting from EIP patterns book from Hohpe G. and Woolf B. : Note that in JMS, an Event-Driven Consumer that is also a Transactional Client will not work as expected. Normally a transaction is rolled back when the code in the transaction throws…
LMeyer
  • 2,570
  • 1
  • 24
  • 35
0
votes
1 answer

Why is my stream being closed by peer?

I have the following console program that listens to a destination (a queue or a topic, it doesn't matter) on an ActiveMQ Stomp server, and simply logs the messages it receives to the console: using System; using Apache.NMS.Stomp; using…
fretje
  • 8,322
  • 2
  • 49
  • 61
1 2 3
8
9