Hi, James:<br><br>Glad to hear it worked out for you!<br><br>Best regards,<br>Jerry<br><br><div class="gmail_quote">On Sat, Jul 28, 2012 at 10:47 AM, McMahon, James S (TASC) <span dir="ltr"><<a href="mailto:james.mcmahon@tasc.com" target="_blank">james.mcmahon@tasc.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div>
<div style="direction:ltr;font-size:10pt;font-family:Tahoma">
<p>This was very helpful, Jerry. I got my configuration working flawlessly last night. Thank you very much for your guidance.</p>
<p> </p>
<p>Jim</p>
<p> </p>
<div style="font-size:16px;font-family:Times New Roman">
<hr>
<div style="DIRECTION:ltr"><font color="#000000" face="Tahoma"><div class="im"><b>From:</b> <a href="mailto:rabbitmq-discuss-bounces@lists.rabbitmq.com" target="_blank">rabbitmq-discuss-bounces@lists.rabbitmq.com</a> [<a href="mailto:rabbitmq-discuss-bounces@lists.rabbitmq.com" target="_blank">rabbitmq-discuss-bounces@lists.rabbitmq.com</a>] on behalf of Jerry Kuch [<a href="mailto:jerryk@rbcon.com" target="_blank">jerryk@rbcon.com</a>]<br>
</div><b>Sent:</b> Friday, July 27, 2012 6:57 PM<div><div class="h5"><br>
<b>To:</b> Discussions about RabbitMQ<br>
<b>Subject:</b> Re: [rabbitmq-discuss] Configuring beyond rabbitmq server on localhost<br>
</div></div></font><br>
</div><div><div class="h5">
<div></div>
<div>Hi, James:<br>
<br>
A machine wanting to use our regular Java client needs only that JAR and its very short list of dependencies. See:<br>
<br>
<a href="http://mvnrepository.com/artifact/com.rabbitmq/amqp-client/2.8.4" target="_blank">http://mvnrepository.com/artifact/com.rabbitmq/amqp-client/2.8.4</a><br>
<br>
A program publishing or consuming messages will need the client and its dependencies on its runtime classpath, and of course its compile classpath if you're also building the code there.<br>
<br>
Best regards,<br>
Jerry<br>
<br>
<div class="gmail_quote">On Fri, Jul 27, 2012 at 1:32 PM, McMahon, James S (TASC)
<span dir="ltr"><<a href="mailto:james.mcmahon@tasc.com" target="_blank">james.mcmahon@tasc.com</a>></span> wrote:<br>
<blockquote style="BORDER-LEFT:#ccc 1px solid;MARGIN:0px 0px 0px 0.8ex;PADDING-LEFT:1ex" class="gmail_quote">
Thank you for the reply, Jerry. On the machines from which I am trying to communicate using EmitLogDirect with a ReceiveLogsDirect instance on another machine through the rabbitmq server on a third machine, is the only software install I need to do (other
than my java files) the download and install of the rabbitmq-client code? In other words, so that the machine running EmitLogDirect (and the one running ReceiveLogsDirect) knows how to find the jars it requires to build my class file?<br>
<br>
It's not clear to me what download, install, and configuration I need to do on the non-rabbimq server machines - the clients, if you will.<br>
<br>
Jim<br>
<br>
________________________________________<br>
From: <a href="mailto:rabbitmq-discuss-bounces@lists.rabbitmq.com" target="_blank">
rabbitmq-discuss-bounces@lists.rabbitmq.com</a> [<a href="mailto:rabbitmq-discuss-bounces@lists.rabbitmq.com" target="_blank">rabbitmq-discuss-bounces@lists.rabbitmq.com</a>] on behalf of Jerry Kuch [<a href="mailto:jerryk@rbcon.com" target="_blank">jerryk@rbcon.com</a>]<br>
Sent: Friday, July 27, 2012 4:18 PM<br>
To: Discussions about RabbitMQ<br>
Cc: Discussions about RabbitMQ<br>
<div>
<div>Subject: Re: [rabbitmq-discuss] Configuring beyond rabbitmq server on localhost<br>
<br>
you're good with any string that your machine can resolve to the IP address<br>
of the system you're trying to connect to... this could be either a host name or an IP address depending on the state of your DNS setup, your hosts file, etc.<br>
<br>
If you fail to connect, inspect the resulting exception or details...<br>
<br>
Sent from my iPhone (Brevity and typos are hopefully the result of 1-fingered typing rather than rudeness or illiteracy).<br>
<br>
<br>
On Jul 27, 2012, at 12:58 PM, "McMahon, James S (TASC)" <<a href="mailto:james.mcmahon@TASC.COM" target="_blank">james.mcmahon@TASC.COM</a>> wrote:<br>
<br>
> Can you show me by simple example, is hostName in the following code supposed to be an IP address, or MYCOMPNAME from rabbit@MYCOMPNAME, or the entire string rabbit@MYCOMPNAME, or something else?<br>
><br>
> ConnectionFactory factory = new ConnectionFactory();<br>
> factory.setHost(hostName);<br>
> factory.setPort(portNumber);<br>
> Connection connection = factory.newConnection();<br>
> Channel channel = connection.createChannel();<br>
><br>
> Jim<br>
> ________________________________________<br>
> From: <a href="mailto:rabbitmq-discuss-bounces@lists.rabbitmq.com" target="_blank">
rabbitmq-discuss-bounces@lists.rabbitmq.com</a> [<a href="mailto:rabbitmq-discuss-bounces@lists.rabbitmq.com" target="_blank">rabbitmq-discuss-bounces@lists.rabbitmq.com</a>] on behalf of Francesco Mazzoli [<a href="mailto:francesco@rabbitmq.com" target="_blank">francesco@rabbitmq.com</a>]<br>
> Sent: Monday, July 23, 2012 12:58 PM<br>
> To: Discussions about RabbitMQ<br>
> Subject: Re: [rabbitmq-discuss] Configuring beyond rabbitmq server on localhost<br>
><br>
> At Mon, 23 Jul 2012 16:41:53 +0000,<br>
> McMahon, James S (TASC) wrote:<br>
>> On the server running my rabbitmq instance, how do I tell it "service incoming<br>
>> requests to send or read messages by listening on port 1234"?<br>
><br>
> By changing the RABBITMQ_NODE_PORT environmental variable, see<br>
> <a href="http://www.rabbitmq.com/configure.html" target="_blank">http://www.rabbitmq.com/configure.html</a> .<br>
><br>
>> When you say Rabbit binds on all interfaces by default, that doesn't mean it<br>
>> monitors all ports does it?<br>
><br>
> It obviously doesn't (that would be an odd thing to do), I meant that rabbitmq<br>
> will receive all incoming connection and not just local one (in other words it<br>
> won't bind to the loopback interface only).<br>
><br>
> --<br>
> Francesco * Often in error, never in doubt<br>
> _______________________________________________<br>
> rabbitmq-discuss mailing list<br>
> <a href="mailto:rabbitmq-discuss@lists.rabbitmq.com" target="_blank">rabbitmq-discuss@lists.rabbitmq.com</a><br>
> <a href="https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss" target="_blank">
https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss</a><br>
> CONFIDENTIALITY NOTICE: This message and any attachments or files transmitted with it (collectively, the "Message") are intended only for the addressee and may contain information that is privileged, proprietary and/or prohibited from disclosure by law or
contract. If you are not the intended recipient: (a) please do not read, copy or retransmit the Message; (b) permanently delete and/or destroy all electronic and hard copies of the Message; (c) notify us by return email; and (d) you are hereby notified that
any dissemination, distribution or copying of the Message is strictly prohibited.<br>
> _______________________________________________<br>
> rabbitmq-discuss mailing list<br>
> <a href="mailto:rabbitmq-discuss@lists.rabbitmq.com" target="_blank">rabbitmq-discuss@lists.rabbitmq.com</a><br>
> <a href="https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss" target="_blank">
https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss</a><br>
_______________________________________________<br>
rabbitmq-discuss mailing list<br>
<a href="mailto:rabbitmq-discuss@lists.rabbitmq.com" target="_blank">rabbitmq-discuss@lists.rabbitmq.com</a><br>
<a href="https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss" target="_blank">https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss</a><br>
_______________________________________________<br>
rabbitmq-discuss mailing list<br>
<a href="mailto:rabbitmq-discuss@lists.rabbitmq.com" target="_blank">rabbitmq-discuss@lists.rabbitmq.com</a><br>
<a href="https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss" target="_blank">https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss</a><br>
</div>
</div>
</blockquote>
</div>
<br>
</div>
</div></div></div>
</div>
</div>
<br>_______________________________________________<br>
rabbitmq-discuss mailing list<br>
<a href="mailto:rabbitmq-discuss@lists.rabbitmq.com">rabbitmq-discuss@lists.rabbitmq.com</a><br>
<a href="https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss" target="_blank">https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss</a><br>
<br></blockquote></div><br>