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

Complex Type Messaging with ActiveMQ and .NET using Spring.net Not working

I am trying to queue messages in Apache ActiveMQ using MVC as a sender app and i have a window service built in c# as a listener to the Apache ActiveMQ. But i am getting an exception while reading the message at the listener end above. Sender MVC…
Dev Soft
  • 63
  • 1
  • 6
2
votes
4 answers

An error occured During creation of phonegap android sub project

I am trying to build a phonegap android,At that time i got a message that [phonegap] detecting Android SDK environment... [phonegap] using the local environment [phonegap] adding the Android platform... [error] An error occured during craetion…
KesaVan
  • 1,031
  • 16
  • 32
2
votes
1 answer

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 I customize it? Does anyone have experience…
TheSoftwareJedi
  • 34,421
  • 21
  • 109
  • 151
2
votes
1 answer

ActiveMQ - deserialize an ActiveMQBytesMessage message

In my job, I work with an application developped partly in c++ and C#. The C++ code is responsible to manage activeMQ (send, receive message). I've developped an application to monitor the messages sent in the topic by subscribing myself with my C#…
John
  • 4,351
  • 9
  • 41
  • 57
2
votes
1 answer

How to implement synchronous Request-Response app using activeMQ NMS and C#?

I could send messages to Queue('test.queue') with the producer(Also i could recieve the same at the other end) But i could not recieve reply msg from reply destination('confirm') with the consumer.receive() method. No error.but consumer does not…
Tamilmaran
  • 1,257
  • 1
  • 10
  • 21
1
vote
1 answer

DDoS monitoring and alert

I want to monitor my network against DDoS and found a screen shot of DDoS monitoring alert by someone. Can any one let me know which software is this after seeing snap shot.
User4283
  • 201
  • 2
  • 8
1
vote
2 answers

How do I set Apache.NMS Thread Name

When I upgraded to Apache.NMS.ActiveMQ 1.5.3, the thread names are now all the same making it impossible to separate out activity. 2012-03-15 15:05:09,412 WARN [ActiveMQ Task] Anyone know how to change this? You cannot change…
Jerico Sandhorn
  • 1,880
  • 1
  • 18
  • 24
1
vote
1 answer

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 need to do this on the consumer level. Here is my…
Jerico Sandhorn
  • 1,880
  • 1
  • 18
  • 24
1
vote
1 answer

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 if you only know how to do this in java, it would…
Chris
  • 4,325
  • 11
  • 51
  • 70
1
vote
1 answer

Apache ActiveMQ priorityBackup switching detection C#

I am currently using NMS (C#), and I provide it with three server addresses with a priority server with the expectation for it to connect to the 2nd or 3rd server when the main is offline and then re-connect with the main server once back online. I…
Liam
  • 439
  • 1
  • 4
  • 26
1
vote
1 answer

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…
Chris
  • 4,325
  • 11
  • 51
  • 70
1
vote
2 answers

Attributes sequencing in Netconf operation

My device wants attribute X to be set before attribute Y. How do we implement it in an NMS/EMS? My understanding is that irrespective of the protocol being used such as Netconf, SNMP, etc, my NMS has to send 2 SET/EDIT PDUs. But, ConfD Kick Start…
Mohan
  • 129
  • 8
1
vote
1 answer

Get distance between two locations using non-solid blocks with bukkit

My goal is to achieve that players on my bukkit server only hear each other, when there are no walls between them. So my idea was to get the distance between the sender of a message on the AsyncPlayerChatEvent and the recipient (getRecipients())…
Marvin Klar
  • 1,869
  • 3
  • 14
  • 32
1
vote
1 answer

ActiveMQ failover transport options not working as expected

I would like to use the ActiveMQ failover transport as described in https://activemq.apache.org/failover-transport-reference.html. The default "retry forever" failover options work as expected. However, since "forever" is sometimes too long, I tried…
1
vote
2 answers

ActiveMQ + NMS. Prefetch limit not respected

I have a synchronous consumer connecting to a queue via this URL which also sets the Prefetch limit: tcp://localhost:61616?nms.prefetchPolicy.all=5 I check the limit programmatically and output it to my logs, so I know the syntax is right and it's…
1 2
3
8 9