Hello,<div>I have a topic exchange in my test environment.</div><div>I've add some binding to this exchange in web management console.When I publish a test message with proper routing key via web management console this message successfully delivered to desired queue.</div><div>I'm trying to publish message through erlang client, but message is not delivering to queue.&nbsp;<br>What is wrong with my code:<br><br><pre style="margin-bottom: 10px; padding: 5px; font-size: 14px; background-color: rgb(238, 238, 238); font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; overflow: auto; width: auto; max-height: 600px; color: rgb(0, 0, 0); line-height: 18px; "><code style="font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; ">ExchangeName = &lt;&lt;"custom.topic"&gt;&gt;,   
ExchangeType = &lt;&lt;"topic"&gt;&gt;,  
Key = &lt;&lt;"K"&gt;&gt;,
Msg = &lt;&lt;"123"&gt;&gt;,
{ok, Connection} = amqp_connection:start
    (#amqp_params_network{username = &lt;&lt;"guest"&gt;&gt;, password = &lt;&lt;"guest"&gt;&gt;, host = "192.168.1.1"}),
{ok, Channel} = amqp_connection:open_channel(Connection),
#'exchange.declare_ok'{} = 
    amqp_channel:call(Channel, #'exchange.declare'{exchange=ExchangeName, durable=true, type = ExchangeType}),&nbsp;</code></pre><div><span style="font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, serif; background-color: rgb(238, 238, 238); color: rgb(0, 0, 0); font-size: 14px; line-height: 18px; ">ok = amqp_channel:call(Channel, #'basic.publish'{routing_key = Key}, #amqp_msg{props = #'P_basic'{delivery_mode=2}, payload = Msg})</span>&nbsp;.</div></div>