activemq-artemis/examples/protocols/amqp/dotnet/DurableSubscriptions
Dmitry Volodin 43759790ae ARTEMIS-1723 Migrate AMQP C# examples to the common .NET version 2018-03-06 12:12:11 -06:00
..
Program.cs ARTEMIS-1723 Migrate AMQP C# examples to the common .NET version 2018-03-06 12:12:11 -06:00
amqp-durables.csproj ARTEMIS-1723 Migrate AMQP C# examples to the common .NET version 2018-03-06 12:12:11 -06:00
readme.md ARTEMIS-1153 Adds new .NET client example for durable subscriptions 2017-05-08 18:39:00 -04:00
run-example.sh ARTEMIS-1153 Adds new .NET client example for durable subscriptions 2017-05-08 18:39:00 -04:00
start-broker.sh ARTEMIS-1153 Adds new .NET client example for durable subscriptions 2017-05-08 18:39:00 -04:00
stop-broker.sh ARTEMIS-1723 Migrate AMQP C# examples to the common .NET version 2018-03-06 12:12:11 -06:00

readme.md

Running the .NET AMQP example

Pre-requisites:

All of this can be done on Linux, Mac and... Windows

  • Install .NET

https://www.microsoft.com/net/core

  • Visual Studio Code is free and may be useful:

https://code.visualstudio.com

  • Powershell might be also useful:

https://github.com/PowerShell/PowerShell/

running the example

  • Create the broker, by running:
../../../../../bin/artemis create ./server1 --user a --password a --role a --allow-anonymous --force
./server1/bin/artemis-service start

Or simply use the start-broker.sh script on this directory

  • Create an Topic to subscribe to

../../../../../bin/artemis queue create --name test-topic --auto-create-address --multicast --preserve-on-no-consumers --durable --address test-topic

  • Compile the code

You need call restore to download AMQP Library and build it. Restore is part of NuGET which is sort of the Maven Repo for Java devs.

dotnet restore
dotnet build
dotnet run

Or simply use the run-example.sh script on this directory

  • Debugging

Visual Studio Code will make it fairly easy to do it