Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Tutorial] Add a .NET RabbitMQ #662

Open
tomczoink opened this issue Apr 29, 2019 · 0 comments
Open

[Tutorial] Add a .NET RabbitMQ #662

tomczoink opened this issue Apr 29, 2019 · 0 comments
Labels
no-sync Do not sync ticket to JIRA tutorials Any tutorial work

Comments

@tomczoink
Copy link
Contributor

tomczoink commented Apr 29, 2019

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
}
};

┆Issue is synchronized with this Jira Epic by Unito

@tomczoink tomczoink added the tutorials Any tutorial work label Apr 29, 2019
@tomczoink tomczoink self-assigned this Apr 29, 2019
@MarkWoulfeAbly MarkWoulfeAbly added the no-sync Do not sync ticket to JIRA label Sep 2, 2020
@ably-sync-bot ably-sync-bot changed the title Add a .NET RabbitMQ tutorial [Tutorial] Add a .NET RabbitMQ Jan 12, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
no-sync Do not sync ticket to JIRA tutorials Any tutorial work
Development

No branches or pull requests

2 participants