You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RabbitMQ is a popular queue framework, so it'd be good to provide a tutorial for it as part of our existing queue tutorials. .NET would be a good choice of language.
Example connection code:
var connectionFactory = new ConnectionFactory {
HostName = settings.MessageQueueHostName,
Port = int.Parse(settings.MessageQueuePort),
VirtualHost = settings.MessageQueueVirtualHost,
UserName = settings.MessageQueueUserName,
Password = settings.MessageQueuePassword,
Ssl = new SslOption {
Enabled = true,
AcceptablePolicyErrors = SslPolicyErrors.RemoteCertificateNameMismatch,
Version = SslProtocols.Tls | SslProtocols.Tls11 | SslProtocols.Tls12
}
};
RabbitMQ is a popular queue framework, so it'd be good to provide a tutorial for it as part of our existing queue tutorials. .NET would be a good choice of language.
Example connection code:
┆Issue is synchronized with this Jira Epic by Unito
The text was updated successfully, but these errors were encountered: