Tagged Questions

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

learn more… | top users | synonyms

5
votes
2answers
325 views

How can I throttle the amount of messages coming from ActiveMQ in my C# app?

I'm using ActiveMQ in a .Net program and I'm flooded with message-events. In short when I get a queue-event 'onMessage(IMessage receivedMsg)' I put the message into an internal queue out of which X ...
3
votes
1answer
942 views

Duplex or request-reply with Apache ActiveMQ WCF Binding configuration question

I am trying to use the Apache.NMS.WCF bindings for a WCF application and get the following error - Contract requires TwoWay (either request-reply or duplex), but Binding 'NmsBinding' doesn't ...
3
votes
2answers
994 views

How do I create a queue browser (preview not consume) in C# for an ActiveMQ queue?

I'm using the NMS API for reading/writing ActiveMQ in C#, and I cannot find a way to preview the messages on a queue. I could read and rollback - but that'll make them DLQ eventually. In my previous ...
2
votes
1answer
721 views

ActiveMQ - Sending a message to a temporary queue specified using a string (NMS in C#)

I have a synchronous message transaction within my system, and the process broadly follows this flow: "Point A" creates a temporary queue ("destination 2") on the message broker; Message sent from ...
2
votes
2answers
349 views

ActiveMQ + NMS can't receive messages

I'm trying to consume messages on an ActiveMQ topic from a C# application. I'm using the 1.3 .net release, and I don't receive any messages. I have existing code that uses older libraries (and ...
2
votes
1answer
516 views

Is ActiveMQ's failover mechanism supported by C# (openwire) & python (stomp) clients?

I'd like to use ActiveMQ to connect python service with C# clients. Is there a way to specify failover connection in C# (openwire) and python (Stomp)? The ActiveMQ will be configured Shared File ...
2
votes
4answers
869 views

ActiveMq NMS Disconnects after about 30 seconds

'm trying to do simple pub/sub with ActiveMq. I can get it all working fine, but the subscriber disconnects after about 30 seconds. I've looked for a timeout type of value I can change but nothing ...
2
votes
1answer
801 views

What serialization method is used for an ActiveMQ NMS C# object message?

I'm planning on using Apache NMS for ActiveMQ messaging, and am wondering what serialization method is going to be used on the objects I send? XML/Binary? What controls the serialization and how can ...
1
vote
1answer
97 views

ActiveMQ: Publish Messages in bulk, persistent, but not async?

is it possible to store a large amount of messages in bulk? I want to send them sync, persistent, but to get speed very much at one time. I am using NMS, the .net version of the java-framework. But ...
1
vote
1answer
105 views

ActiveMQ, why not use BytesMessage with properties?

using ActiveMQ I want to serialize my objects with protocol buffers (*). Then I have an byte array. Now I read that ByteMessage should not be used with properties: ...
1
vote
0answers
198 views

authenticate connection to activeMQ with username/password

I have an application running ok sending messages to activemq. I'm using spring.net and Nmstemplate to connect to broker. xml configuration file in general is: <object ...
1
vote
1answer
164 views

Zenoss - Device Access Control Lists for Customers

We're evaluating Zenoss and are interested in Device Access Control. We would like to set up the system so that our customers could access Zenoss and only see their devices and status. This feature ...
1
vote
2answers
432 views

Multiple clients with Server Application more than 15 clients handling issue

I have a Server Application written in C# .NET and running on Windows XP SP3. I am using asynchronous sockets programming for handling around 500 clients. But I got a problem to entertain more than ...
1
vote
3answers
130 views

Looking for a cloud based NMS similar to monitis but supports OS X

My company is 95% os x and os x server based. Currently we use opennms to do all of our network and server monitoring needs. But we are wanting to offload some of our servers to cloud services and ...
1
vote
0answers
241 views

ActiveMQ Advisory Topics for Connections not forwarded in network of brokers?

I'm working on an application where we want to monitor logon/logoff of clients. Since ActiveMQ contains Advisory Topics that alert you of new connections and removal of connections, the idea was to ...
1
vote
1answer
347 views

Suggestions needed for request-reply on ActiveMQ and Camel using Spring NMS on .NET

I am trying to use the ActiveMQ and Camel (running in broker) on .NET using Spring and NMS. In general, these components work brilliantly. I have a camel route for send/receive, and some code in ...
0
votes
1answer
38 views

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 ...
0
votes
2answers
67 views

Reading ActiveMQ messages without deletion

I am trying to read through ActiveMQ messages and according some filters to process some of them or leave the other messages in the queue. I use NMS API with the following code: Uri ...
0
votes
1answer
50 views

How do I set the prefetch limit for NMS listener container

Other than on the connection URL, how do I set the prefetch limit in spring config. I can't find any doc on any of the properties and the param on the Connection URL doesn't seem to work. Besides, I ...
0
votes
0answers
45 views

NMS Consumer does not reconnect to ActiveMQ

I have a working platform using the latest NMS and ActiveMQ. For the most part, all works great most of the time, but occasionally I find that a Consumer stops receiving messages. It shows up as a ...
0
votes
0answers
31 views

Memory Leak, Spring NMS - ConsumerCacheKey

I've recently been given the task of trying to find why our (.NET 4) application is using an inappropriate amount of memory. Yay In the course of this investigation I found that the Redgate Ants ...
0
votes
1answer
86 views

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; ...
0
votes
1answer
157 views

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 ...
0
votes
0answers
52 views

Best NMS and Monitoring solution for large scale system?

What would be the best NMS and Monitoring solution for a system of this scale ? Around 1K Devices ? - combination of standard Network devices + custom-built hardware pieces Upto 10GB of data to ...
0
votes
1answer
48 views

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++ ...
0
votes
1answer
345 views

ActiveMQ NMS: Using transport.requesttimeout with failover transport

To try and mitigate any hangs that may come about during problems with ActiveMQ connectivity in my application, I'm looking at adding the following parameter to my broker connection string within my ...
0
votes
1answer
279 views

Transferring large files with Apache NMS

What is currently considered state-of-art, so to speak, when transferring large files over Apache NMS (using ActiveMQ)? Putting the whole content into a StreamMessage? However, I've seen the naming ...
0
votes
2answers
304 views

Delayed delivery with ActiveMQ 5.3 and NMS

I'm attempting to use the new delayed delivery functionality from NMS. The schedulerSupport attribute has been set in the config file, and I'm using the following code to attempt to delay delivery of ...
0
votes
1answer
272 views

How can I programatically flush an ActiveMQ queue using the Apache.NMS API?

I need the ability to flush a queue programatically using Apache.NMS (C#). I've been looking through the NMS API, but see no such capability. Does it exist?
0
votes
1answer
350 views

Can DateTime conversion between Java and C# introduce errors?

Background I'm using Apache's NMS library to talk with ActiveMq. Every sent message is time stamped by the producer, I'm looking at message latency by subtracting the timestamp from DateTime.UtcNow, ...
0
votes
1answer
75 views

Is there a way to set the maximum number of message redeliveries in ActiveMQ when using the Apache.NMS libraries?

I'm using Apache.NMS 1.4. I need to be able to programmatically set the maximum number of times a message can be delivered before being placed in the DLQ (Dead Letter Queue). Is there a way to do it?
0
votes
1answer
316 views

How does WCF turn a ServiceContract/OperationContract into a Message that can be serialized?

I'm starting to experiment with using ActiveMQ (in conjunction with the ActiveMQ.NMS bindings) to support some cross platform RPC messaging that we're looking at doing. As part of this I'd like to be ...
0
votes
1answer
567 views

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

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

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 ...