Prerequisites
Ensure a PostgreSQL server is running and accessible. This sample connects to localhost on port 54320 using the credentials in the connection string. The database named nservicebus must exist before running the sample.
Running the sample
- Start both the Sender and Receiver projects.
- Press c to send a command, or e to publish an event, from Sender to the Receiver.
- The Receiver handles the message.
Code walkthrough
Configuring the PostgreSQL transport
var connectionString = "User ID=user;Password=admin;Host=localhost;Port=54320;Database=nservicebus;Pooling=true;Connection Lifetime=0;Include Error Detail=true";
var routing = endpointConfiguration.UseTransport(new PostgreSqlTransport(connectionString)
{
TransportTransactionMode = TransportTransactionMode.SendsAtomicWithReceive
});
routing.RouteToEndpoint(typeof(MyCommand), "PostgreSql.SimpleReceiver");