Request / Response
INFO
Remember that you can download the samples from the GitHub repository.
This sample makes use of Shuttle.Esb.AzureStorageQueues for the message queues. Local Azure Storage Queues should be provided by Azurite.
Once you have opened the Shuttle.RequestResponse.sln
solution in Visual Studio set the following projects as startup projects:
- Shuttle.RequestResponse.Client
- Shuttle.RequestResponse.Server
Implementation
In order to get any processing done in Shuttle.Esb a message will need to be generated and sent to an endpoint for processing. The idea behind a command message is that there is exactly one endpoint handling the message. Since it is an instruction the message absolutely has to be handled and we also need to have only a single endpoint process the message to ensure a consistent result.
In this guide we'll create the following projects:
Shuttle.RequestResponse.Client
(Console Application)Shuttle.RequestResponse.Server
(Console Application)Shuttle.RequestResponse.Messages
(Class Library)
Messages
Create a new class library called
Shuttle.RequestResponse.Messages
with a solution calledShuttle.RequestResponse
Note: remember to change the Solution name.
RegisterMember
Rename the
Class1
default file toRegisterMember
and add aUserName
property.
namespace Shuttle.RequestResponse.Messages
{
public class RegisterMember
{
public string UserName { get; set; }
}
}
MemberRegistered
Add a new class called
MemberRegistered
also with aUserName
property.
namespace Shuttle.RequestResponse.Messages
{
public class MemberRegistered
{
public string UserName { get; set; }
}
}
Client
Add a new
Console Application
to the solution calledShuttle.RequestResponse.Client
.
Install the
Shuttle.Esb.AzureStorageQueues
nuget package.
This will provide access to the Azure Storage Queues IQueue
implementation and also include the required dependencies.
Install the
Microsoft.Extensions.Configuration.Json
nuget package.
This will provide the ability to read the appsettings.json
file.
Add a reference to the
Shuttle.RequestResponse.Messages
project.
Program
Implement the main client code as follows:
using System;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Shuttle.Esb;
using Shuttle.Esb.AzureStorageQueues;
using Shuttle.RequestResponse.Messages;
namespace Shuttle.RequestResponse.Client
{
internal class Program
{
private static async Task Main(string[] args)
{
var services = new ServiceCollection();
var configuration = new ConfigurationBuilder().AddJsonFile("appsettings.json").Build();
services.AddSingleton<IConfiguration>(configuration);
services.AddServiceBus(builder =>
{
configuration.GetSection(ServiceBusOptions.SectionName).Bind(builder.Options);
});
services.AddAzureStorageQueues(builder =>
{
builder.AddOptions("azure", new AzureStorageQueueOptions
{
ConnectionString = "UseDevelopmentStorage=true;"
});
});
Console.WriteLine("Type some characters and then press [enter] to submit; an empty line submission stops execution:");
Console.WriteLine();
await using (var serviceBus = await services.BuildServiceProvider().GetRequiredService<IServiceBus>().StartAsync())
{
string userName;
while (!string.IsNullOrEmpty(userName = Console.ReadLine()))
{
await serviceBus.SendAsync(new RegisterMember
{
UserName = userName
}, c => c.WillExpire(DateTime.Now.AddSeconds(5)));
}
}
}
}
}
Client configuration file
Add an
appsettings.json
file as follows:
{
"Shuttle": {
"ServiceBus": {
"Inbox": {
"WorkQueueUri": "azuresq://azure/shuttle-client-work",
"ErrorQueueUri": "azuresq://azure/shuttle-error",
"ThreadCount": 1
},
"MessageRoutes": [
{
"Uri": "azuresq://azure/shuttle-server-work",
"Specifications": [
{
"Name": "StartsWith",
"Value": "Shuttle.RequestResponse.Messages"
}
]
}
]
}
}
}
This tells the service bus that all messages sent having a type name starting with Shuttle.RequestResponse.Messages
should be routed to endpoint azuresq://azure/shuttle-server-work
.
MemberRegisteredHandler
Create a new class called
MemberRegisteredHandler
that implements theIMessageHandler<MemberRegistered>
interface as follows:
using System;
using Shuttle.Esb;
using Shuttle.RequestResponse.Messages;
namespace Shuttle.RequestResponse.Client
{
public class MemberRegisteredHandler : IAsyncMessageHandler<MemberRegistered>
{
public async Task ProcessMessageAsync(IHandlerContext<MemberRegistered> context)
{
Console.WriteLine();
Console.WriteLine("[RESPONSE RECEIVED] : user name = '{0}'", context.Message.UserName);
Console.WriteLine();
await Task.CompletedTask;
}
}
}
Server
Add a new
Console Application
to the solution calledShuttle.RequestResponse.Server
.
Install the
Shuttle.Esb.AzureStorageQueues
nuget package.
This will provide access to the Azure Storage Queues IQueue
implementation and also include the required dependencies.
Install the
Microsoft.Extensions.Hosting
nuget package.
This allows a console application to be hosted using the .NET generic host.
Install the
Microsoft.Extensions.Configuration.Json
nuget package.
This will provide the ability to read the appsettings.json
file.
Add a reference to the
Shuttle.RequestResponse.Messages
project.
Program
Implement the
Program
class as follows:
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Shuttle.Esb;
using Shuttle.Esb.AzureStorageQueues;
namespace Shuttle.RequestResponse.Server
{
internal class Program
{
private static async Task Main()
{
await Host.CreateDefaultBuilder()
.ConfigureServices(services =>
{
var configuration = new ConfigurationBuilder().AddJsonFile("appsettings.json").Build();
services.AddSingleton<IConfiguration>(configuration);
services.AddServiceBus(builder =>
{
configuration.GetSection(ServiceBusOptions.SectionName).Bind(builder.Options);
builder.Options.Asynchronous = true;
});
services.AddAzureStorageQueues(builder =>
{
builder.AddOptions("azure", new AzureStorageQueueOptions
{
ConnectionString = configuration.GetConnectionString("azure")
});
});
})
.Build()
.RunAsync();
}
}
}
Server configuration file
Add an
appsettings.json
file as follows:
{
"ConnectionStrings": {
"azure": "UseDevelopmentStorage=true;"
},
"Shuttle": {
"ServiceBus": {
"Inbox": {
"WorkQueueUri": "azuresq://azure/shuttle-server-work",
"ErrorQueueUri": "azuresq://azure/shuttle-error"
}
}
}
}
RegisterMemberHandler
Add a new class called
RegisterMemberHandler
that implements theIMessageHandler<RegisterMemberCommand>
interface as follows:
using System;
using Shuttle.Esb;
using Shuttle.RequestResponse.Messages;
namespace Shuttle.RequestResponse.Server
{
public class RegisterMemberHandler : IAsyncMessageHandler<RegisterMember>
{
public async Task ProcessMessageAsync(IHandlerContext<RegisterMember> context)
{
Console.WriteLine();
Console.WriteLine("[MEMBER REGISTERED] : user name = '{0}'", context.Message.UserName);
Console.WriteLine();
await context.SendAsync(new MemberRegistered
{
UserName = context.Message.UserName
}, builder => builder.Reply());
}
}
}
Run
Set both the client and server projects as startup projects.
Execute
Execute the application.
The client application will wait for you to input a user name. For this example enter my user name and press enter:
INFO
You will observe that the server application has processed the message.
INFO
The client application will then process the response returned by the server.
You have now completed a full request / response call chain.