<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><meta http-equiv=Content-Type content="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:Helvetica;
        panose-1:2 11 6 4 2 2 2 2 2 4;}
@font-face
        {font-family:Helvetica;
        panose-1:2 11 6 4 2 2 2 2 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=EN-US link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Helvetica","sans-serif";color:#252C2F'>Hi,<br><br>I was hoping that by setting the jvm system properties &quot;socksProxyHost&quot; and &quot;socksProxyPort&quot; Spring AMQP ConnectionFactory would go over the proxy however it does not.<br><br>I attempted to browser through the code and I reached upto here in the Class: com.rabbitmq.client.ConnectionFactory in AMQP Client Library (I browsed the code via GrepCode)<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:10.0pt;font-family:"Helvetica","sans-serif";color:#252C2F'><br>436 &nbsp; &nbsp;protected FrameHandler createFrameHandler(Address addr)<br>437 &nbsp; &nbsp; &nbsp; &nbsp;throws IOException {<br>438<br>439 &nbsp; &nbsp; &nbsp; &nbsp;String hostName = addr.getHost();<br>440 &nbsp; &nbsp; &nbsp; &nbsp;int portNumber = portOrDefault(addr.getPort());<br>441 &nbsp; &nbsp; &nbsp; &nbsp;Socket socket = null;<br>442 &nbsp; &nbsp; &nbsp; &nbsp;try {<br>443 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;socket = factory.createSocket();<br>444 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;configureSocket(socket);<br>445 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;socket.connect(new InetSocketAddress(hostName, portNumber),<br>446 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;connectionTimeout);<br>447 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;return createFrameHandler(socket);<br>448 &nbsp; &nbsp; &nbsp; &nbsp;} catch (IOException ioe) {<br>449 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;quietTrySocketClose(socket);<br>450 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;throw ioe;<br>451 &nbsp; &nbsp; &nbsp; &nbsp;}<br>452 &nbsp; &nbsp;}<br><br>This certainly does not honor the JVM proxy settings. Or am I looking at the wrong place.<br><br>My Question: Is there a way to make the amqp connection go over a socks proxy?<br><br>Thanks<br>Farooq</span><o:p></o:p></p></div></body></html>