You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to rabbitmq-users
Hi,
I know that AMQP is a binary protocol but I have the need to tunnel it through an HTTP proxy that supports the HTTP CONNECT method. This simply provides a TCP connection after you have sent the CONNECT command.
Use: Just override ConnectionFactory.SocketFactory to return new TunneledTcpClient.
mqConnectionfactory.SocketFactory = family => new TunneledTcpClient(family,"proxy.my_company", 8080, mqConfig.ProxyUsername, mqConfig.ProxyPassword);