I created a simple console app that creates a topic, allows you to send a message to that 1 topic; and also created the client to listen in and subscribe to that topic, the subscription name is dynamically generated.; its all based on the sample code thats available.
If I run the application (call it runA), I can enter a message, and the listener will post it back on the console - this works.
If I run the application (call it runB), I can enter a message, and the listener will post it back on the console, and also show it on runA - this works.
is the topic-subscriber max count still 2000? If I wanted to create a simple chat application with N listeners is there a better way to do this?