Questions tagged [netmq]

A native .NET library for ZeroMQ messaging.

NetMQ is a 100% C# implementation of ZeroMQ for the .NET platform.

It provides a low overhead messaging solution for high performance applications over a variety of transports.

163 questions
0
votes
1 answer

NetMQ - messages only work on reply to incoming message, not to other port

On initialize of my router application I call the following code. It binds fine, receives messages fine but refuses to work for the On_ReceiveXXX methods unless it's a direct response. I want to know why public void Initialize(string…
Fred Johnson
  • 2,539
  • 3
  • 26
  • 52
0
votes
2 answers

NetMQ subscriber blocking with a published message

I have a Message Publishing Server class which creates a PUB socket at construction, with the following code: this.context = NetMQContext.Create(); this.pubSocket = this.context.CreatePublisherSocket(); var portNumber =…
Andrey
  • 25
  • 7
0
votes
1 answer

ZeroMQ on Windows Phone 8.1?

I've been developing an app for Windows Phone 8.1 and i wanted to use ZeroMQ for the communication with the server. I've used ZMQ before and it has always worked after some trying but i just coulnd't get it to work with WP8.1. I already tried to use…
C. Rohrer
  • 3
  • 4
0
votes
1 answer

Confused with using SendHighWatermark in NetMQ

I'm making tests for my prototype with NetMQ, in particular I'm learning the influence of HighWatermark options. I have understood and tested the following case: server with ROUTER socket isn't started yet meanwhile client with DEALER socket is…
Andrey G.A
  • 305
  • 4
  • 20
0
votes
1 answer

ZeroMq/NetMQ Cannot find extension ReceiveFrameBytes from ReceivingSocketExtensions

When publishing/subscribing in NetMQ how can i receive bytes. I am trying to use the extension byte[] ReceiveFrameBytes() from ReceivingSocketExtensions, but I just cannot see it intellisense. I am using NetMQ which is the container namespace for…
PingCrosby
  • 369
  • 4
  • 17
0
votes
1 answer

ZeroMQ choose recipient

I'm new to ZeroMQ (and to networking in general), and have a question about using ZeroMQ in a setup where multiple clients connect to a single server. My situation is as follows: --1 server --multiple clients --Clients send messages to server: I've…
Brian Snow
  • 1,133
  • 1
  • 12
  • 23
0
votes
1 answer

Socket.ReceiveReady is not fired despite available messages

I've started to explore NetMQ 3.3.0.11 and ran into an issue with the use of Poller. I try to achieve that the poller polls for about 1s and then stops and allows something else to be done before it resumes polling for 1s and so on. I have the…
mph
  • 99
  • 2
  • 8
0
votes
0 answers

Netmq in Azure Worker Role works on dev machine, but not on Azure

I'm building a simple Azure Worker Role to Subscribe to a zeromq Publisher (using NetMQ in the worker) and store messages into Azure Tables. Everything works fine when I run the worker on my dev machine. Messages come in and are written to the…
0
votes
1 answer

ZeroMq Sockets Design

I need to send large volumes of short messages to a single process from different agents. Approximately 10-15 2-3 Kb messages/sec from 10 agents. Some of the agents run on same machine, while others on separate machines in same VLAN. The requirement…
Alex Michel
  • 416
  • 3
  • 13
0
votes
2 answers

ZeroMQ / NetMQ - Is it possible to define the source port of a "client"

i'm using communication based on ZeroMq and NetMQ (same problem in both projects) I have applications running behind fire walls, on the server side its easy to define which ports to open for inbound traffic, however on the client side it seems that…
Curious Guy
  • 113
  • 1
  • 5
-1
votes
1 answer

How to assign a variable with .ConvertToString() method in C# to parse the message?

I am looking to learn how to assign a name to the newly converted string and then parse that string based on string[] separatingStrings = { ",", "<<", ">>" }; string[] messages =…
-1
votes
1 answer

the name '' does not exist in the current context

Hi I can't fix the issue in OnLoginSuccess() pubSocket.SendMoreFrame("TopicA").SendFrame("Hello"); variable due to error the name '' does not exist in the current context. I know that I need to change variable to public but when I add static public…
sortedMAn
  • 3
  • 2
-1
votes
1 answer

How to avoid disposing SubscriberSocket

This implementation is bad since it will end up disposing the SubscriberSocket when the first subscription terminates. When I run it, nothing seems to publish. [This uses Rx 3.0.0] How to modify Receive function to fix this problem? using…
Ivan
  • 7,448
  • 14
  • 69
  • 134
1 2 3
10
11