Hey everyone!<br><br>I'm working on a project where I need to connect two powershells via each other using RabbitMQ. I'm using an opensource module called PoshRabbit (http://poshrabbit.codeplex.com/) and<br>I'm hoping any one of you has experience with this module or can see what I'm doing wrong without knowing the module. <br><br>I am making connections and can see the queue's being created but for some reason I can't publish or retrieve any messages from my queues. Can you see what I'm doing wrong since I'm following every step.<br><br><span style="font-family: courier new,monospace;">import-module poshrabbit;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$pass = ConvertTo-SecureString "pass" -AsPlainText -Force;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$q = start-consumer -queuename 'Test' -name 'Testing' -hostname 'localhost' -username 'Joey2' -password $pass -exchange posh -routingkey 'prefix.#';</span><br style="font-family: courier new,monospace;"><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$a=@{</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">hostname = 'localhost';</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">exchange = 'posh';</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">routingkey = 'prefix.#';</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">};</span><br style="font-family: courier new,monospace;"><br>this works fine without returning any errors and calling $q returns info about the queue so that should be fine.<br><br>However, <br><span style="font-family: courier new,monospace;">publish-string @a -message 'hoi'; </span><br><br>returns the following error:<br><br><span style="font-family: courier new,monospace;">Publish-RabbitMessage : None of the specified endpoints were reacable</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">at ...... \poshrabbit-functions.ps1:717 char:24</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">+&nbsp;&nbsp;&nbsp; public-rabbitMessage &lt;&lt;&lt;&lt;&nbsp; local :a;</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">....</span><br><br>Any help would be much appreciated since I'm stuck here!<br><br>Thanks in advance!<br>-Joey :)<br>