
- English
- ePUB (mobile friendly)
- Available on iOS & Android
About this book
Step by Step guide to develop solutions using RabbitMQ message queuing with.Net application. Key Features
- How to Setup RabbitMQ on Windows
- What are RabbitMQ Exchanges and its Types
- What are Queues and Bindings
- How to Create Users in RabbitMQ and Setting privilege
- How to Publish /Read/Delete Messages Using C#
Description
This book is meant for developers, architects, solution providers, consultants and engineers, Primarily the book requires knowledge of C#, but it can also be understood by anybody with a bit of programming background. This book contains instructions on how to set up and Install RabbitMQ on Windows and how to use Web Management Plugin of RabbitMQ. It also discusses topics such as Exchanges, types of Rabbit MQ Exchanges and Queue along with Binding in RabbitMQ and creating RabbitMQ Users, Publishing/ Reading/ Deleting Messages Using C# What Will You Learn
- RabbitMQ, its Setup, Exchanges, Queues, users and Binding.
- RabbitMQ Virtual hosts, Connections, Channels
- Publishing, Reading, Delete Message
- Publish Message Using C# to RabbitMQ
- Using RabbitMQ Direct Message Exchanges, Topic Message Exchanges, Fanout Message Exchanges and Headers Message Exchanges with.Net Application
Who This Book Is For
This book is for developers, architects, solution providers, consultant, and engineers to develop solutions using RabbitMQ message and queuing with.Net applications. Table of Contents
- RabbitMQ Introduction
- RabbitMQ Setup
- RabbitMQ Exchanges
- RabbitMQ Queues
- Binding in RabbitMQ
- RabbitMQ Users
- RabbitMQ Virtual hosts
- Connections
- Channels
- Publishing Message
- Reading Message
- Delete Message
- Publish Message Using C# to RabbitMQ
- Using RabbitMQ Direct Message Exchanges with.Net Application
- Using RabbitMQ Topic Message Exchanges with.Net Application
- Using RabbitMQ Fanout Message Exchanges with.Net Application
- Using RabbitMQ Headers Message Exchanges with.Net Application
- About the Author
Saineshwar Bageri is a Software Developer working on.NET Web Technologies for six years. His expertise also includes Visual Studio, Team Foundation Server, Entity Framework, Unit Testing AngularJS and JavaScrip. He has been presented with MVP awards by Microsoft (2018) and C# Corner (2014-2018) for his contribution to the community. linkedin: linkedin.com/in/saineshwar-bageri-mvp-35200440
Frequently asked questions
- Essential is ideal for learners and professionals who enjoy exploring a wide range of subjects. Access the Essential Library with 800,000+ trusted titles and best-sellers across business, personal growth, and the humanities. Includes unlimited reading time and Standard Read Aloud voice.
- Complete: Perfect for advanced learners and researchers needing full, unrestricted access. Unlock 1.4M+ books across hundreds of subjects, including academic and specialized titles. The Complete Plan also includes advanced features like Premium Read Aloud and Research Assistant.
Please note we cannot support devices running on iOS 13 and Android 7 or earlier. Learn more about using the app.
Information
Publish Message Using C# to RabbitMQ
Creating RequestRabbitMQ Application

Adding RabbitMQ.Client NuGet Package

Adding Direct Exchange
Code Snippet
using RabbitMQ.Client;using System;namespace RequestRabbitMQ{class Program{static void Main(string[] args){string UserName = "guest";string Password = "guest";string HostName = "localhost"; //Main entry point to the RabbitMQ .NET AMQPclientvar c o n n e c t i o n F a c t o r y = newRabbitMQ.Client.ConnectionFactory(){UserName = UserName,Password = Password,HostName = HostName};var connect i on =connectionFactory.CreateConnection();var model = connection.CreateModel();//// Create Exchangemodel.ExchangeDeclare("demoExchange",ExchangeType.Direct);Console.ReadLine();}}} 

Adding Queue
Method definition:
/// <summary> Declare a queue.</summary>[AmqpMethodDoNotlmplement(null)]QueueDedareOk QueueDedare(string queue, bool durable, bool exclusive, bool autoDelete, IDictionary<string, object> arguments)Table of contents
- Cover
- Learning Rabbitmq With C#
- Copyright
- Table of Contents
- Preface
- Acknowledgement
- • RabbitMQ Introduction
- • RabbitMQ Setup
- • Installing Erlang
- • RabbitMQ Exchanges
- • RabbitMQ Queues
- • Binding in RabbitMQ
- • RabbitMQ Users
- • RabbitMQ Virtual Hosts
- • Connections
- • Channels
- • Publishing Message
- • Reading Message
- • Delete Message
- • Publish Message Using C# to RabbitMQ
- • Using RabbitMQ Direct Message Exchanges with .Net Application
- • Using RabbitMQ Topic Message Exchanges with .Net Application
- • Using RabbitMQ Fanout Message Exchanges with .Net Application
- • Using RabbitMQ Headers Message Exchanges with .Net Application