ASP.NET Core sample app illustrating how to use the Steeltoe RabbitMQ Connector
for connecting to a RabbitMQ server.
This sample illustrates using an IConnection
to send and receive messages on the bound RabbitMQ service.
- Installed .NET 8 SDK
- Optional: VMware Tanzu Platform for Cloud Foundry (optionally with Windows support) with VMware Tanzu RabbitMQ for Tanzu Application Service and Cloud Foundry CLI
- Optional: VMware Tanzu Platform for Kubernetes v1.5 or higher and Kubernetes
- Start a RabbitMQ docker container
- Run the sample
dotnet run
To send a message over RabbitMQ: enter text and click the Send button. To receive a RabbitMQ message that you have sent: click the Receive button. Messages will be retrieved from the queue one at a time.
- Create a RabbitMQ service instance in an org/space
cf target -o your-org -s your-space cf create-service p.rabbitmq single-node sampleRabbitMQService
- Wait for the service to become ready (you can check with
cf services
) - Run the
cf push
command to deploy from source (you can monitor logs withcf logs rabbitmq-connector-sample
)- When deploying to Windows, binaries must be built locally before push. Use the following commands instead:
dotnet publish -r win-x64 --self-contained cf push -f manifest-windows.yml -p bin/Release/net8.0/win-x64/publish
- When deploying to Windows, binaries must be built locally before push. Use the following commands instead:
- Copy the value of
routes
in the output and open in your browser
In order to connect to RabbitMQ for this sample, you must have a class claim available for the application to bind to.
The commands listed below will create the claim, and the claim will be bound to the application via the definition
in the workload.yaml
that is included in the config
folder of this project.
kubectl config set-context --current --namespace=your-namespace
tanzu service class-claim create my-postgresql-service --class postgresql-unmanaged
If you'd like to learn more about these services, see claiming services and consuming services in the documentation.
To deploy from local source code:
tanzu app workload apply --local-path . --file ./config/workload.yaml -y
Alternatively, from locally built binaries:
dotnet publish -r linux-x64 --no-self-contained
tanzu app workload apply --local-path ./bin/Release/net8.0/linux-x64/publish --file ./config/workload.yaml -y
See the Tanzu documentation for details.
See the Official Steeltoe Connectors Documentation for a more in-depth walkthrough of the samples and more detailed information.