<div dir="ltr">Send seems to work...<br><blockquote style="margin: 0px 0px 0px 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote"><?php<br>$txt = 'Hello World ';<br>if( isset( $argv[1] ) )<br>{<br>    $txt = $argv[1];<br>}<br>require_once __DIR__ . '/vendor/autoload.php';<br>use PhpAmqpLib\Connection\AMQPConnection;<br>use PhpAmqpLib\Message\AMQPMessage;<br><br>$connection = new AMQPConnection('api.dev.com', 5672, 'larry', '....');<br>$channel = $connection->channel();<br><br>$exchange = 'Site.Offline';<br>$channel->exchange_declare( $exchange, 'x-lvc', false, true, false);<br><br>$msg = new AMQPMessage( $txt );<br>$channel->basic_publish( $msg, $exchange );<br>echo " [x] Sent '{$txt}'\n";<br><br>$channel->close();<br>$connection->close();<br></blockquote><div><br>But receive does not...<br><blockquote style="margin: 0px 0px 0px 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;" class="gmail_quote"><?php<br><br>require_once __DIR__ . '/vendor/autoload.php';<br>use PhpAmqpLib\Connection\AMQPConnection;<br><br>$connection = new AMQPConnection('api.dev.com', 5672, 'larry', '.....');<br>$channel = $connection->channel();<br><br><br>$exchange = 'Site.Offline';<br>$channel->exchange_declare( $exchange, 'x-lvc', false, true, false);<br>$msg = $channel->basic_get( $exchange );<br>echo " [x] Received ", $msg->body, "\n";<br><br>$channel->close();<br>$connection->close();<br></blockquote><br> Error Message basically ->  no queue 'Site.Offline'<br><br>Larry<br><br>PS: Your replies don't seem to be propagating to the google group ;-)<br></div><br></div>